-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "node-quickstart",
"version": "1.0.0",
"description": "Quickstart in Couchbase with Ottoman JS and Express",
"main": "src/server.js",
"scripts": {
"start": "env-cmd -f ./config/dev.env nodemon --exec babel-node src/server",
"test": "env-cmd -f ./config/test.env jest --verbose --forceExit --detectOpenHandles",
"testGA": "jest --verbose --runInBand",
"clean": "rm -rf dist",
"format": "prettier --write \"**/*.js\"",
"build": "npm run clean && babel ./src --out-dir dist --copy-files"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./__test__/jest.setup.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"dist/"
],
"testTimeout": 10000
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"couchbase": "^4.4.0",
"express": "^4.19.2",
"ottoman": "^2.5.0",
"qs": "^6.13.0",
"swagger-ui-express": "^4.6.2",
"uuid": "^10.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/node": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.4",
"env-cmd": "^10.1.0",
"jest": "^29.5.0",
"nodemon": "^3.1.5",
"prettier": "^3.3.2",
"supertest": "^7.0.0"
}
}