-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 881 Bytes
/
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
{
"name": "react-starter-api",
"author": "Charlie Cooper",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node main.js",
"lint": "./node_modules/eslint/bin/eslint.js ./**/*",
"start-dev": "nodemon main.js --exec 'npm run lint && node'",
"test": "NODE_ENV=test mocha ./tests/* --exit",
"test-watch": "NODE_ENV=test mocha ./tests/* --watch"
},
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"mongoose": "^5.0.11",
"nodemon": "^1.17.2"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"eslint": "^4.19.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"mocha": "^5.0.4",
"sinon": "^4.4.8",
"sinon-mongoose": "^2.1.1"
}
}