-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "node-quickstart",
"version": "2.0.0",
"description": "Quickstart in Couchbase with Node JS and Express",
"main": "src/server.js",
"scripts": {
"init-test-db": "env-cmd -f ./config/test.env npx babel-node ./src/initializeCbServer.js",
"init-test-index": "env-cmd -f ./config/test.env npx babel-node ./src/createIndex.js",
"test": "env-cmd -f ./config/test.env jest --verbose --runInBand",
"testGA": "jest --verbose --runInBand",
"test:ci": "npm run init-test-db && npm run init-test-index && env-cmd -f ./config/test.env jest --verbose",
"init-db": "env-cmd -f ./config/dev.env npx babel-node ./src/initializeCbServer.js",
"start": "env-cmd -f ./config/dev.env nodemon --exec babel-node src/server",
"clean": "rm -rf dist",
"format": "prettier --write \"**/*.js\"",
"build": "npm run clean && babel ./src --out-dir dist --copy-files"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"dist/"
],
"testTimeout": 10000
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.9",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"couchbase": "4.4.4",
"express": "^4.21.2",
"qs": "^6.14.0",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/node": "^7.25.0",
"@babel/plugin-transform-runtime": "^7.26.8",
"@babel/preset-env": "^7.26.0",
"env-cmd": "^10.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.5.0",
"set-value": ">=4.1.0",
"supertest": "^7.0.0"
}
}