-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 905 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
34
35
36
{
"name": "todolist",
"version": "1.0.0",
"description": "create a list of things you're always forget to do",
"main": "index.js",
"scripts": {
"test": "mocha './app/**/*.js' 'index.test.js' tests",
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint ./app/**/*.js --fix"
},
"author": "Irina Stoetskaya, Anna Bereza, Denis Timokhin",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"chai-http": "^4.2.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"mongodb": "^3.1.10",
"pug": "^2.0.3"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"nodemon": "1.18.6",
"should": "^13.2.3",
"supertest": "^3.3.0"
},
"eslintIgnore": [
"node_modules/*"
]
}