-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 KB
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
{
"name": "node-quickstart",
"version": "2.0.0",
"description": "Quickstart in Couchbase with Node JS and Express",
"main": "src/server.js",
"scripts": {
"test": "env-cmd -f ./config/test.env jest --verbose --runInBand",
"testGA": "jest --verbose --runInBand",
"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": {
"@babel/runtime": "^7.29.2",
"cors": "^2.8.6",
"couchbase": "4.7.0",
"express": "^4.22.1",
"swagger-ui-express": "^5.0.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/node": "^7.29.0",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"env-cmd": "^11.0.0",
"jest": "^30.3.0",
"nodemon": "^3.1.14",
"prettier": "^3.8.3",
"supertest": "^7.2.2"
}
}