-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "my-basic-node-setup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo NODE_PATH=./ && mocha --require test/setup.js --timeout 12000 --compilers js:babel-register --recursive",
"start": "nodemon --exec babel-node -- index",
"lint": "eslint"
},
"author": "carsen.chan",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"cors": "^2.8.4",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"method-override": "^2.3.10",
"mongoose": "^5.3.5",
"morgan": "^1.9.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.9.1",
"mocha": "^5.2.0",
"mockgoose": "^7.3.5",
"nodemon": "^1.17.5",
"supertest": "^3.1.0"
}
}