-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 909 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": "todo-server",
"version": "1.0.0",
"description": "Server for managing todo tasks",
"main": "app.js",
"scripts": {
"start": "node src/app",
"start:dev": "nodemon src/app",
"test": "nyc mocha 'test/**/*test.js' --exit",
"test:dev": "nodemon --exec 'mocha -R min'",
"coverage": "codecov"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"date-fns": "^2.14.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongodb": "^3.5.9",
"mongoose": "^5.7.10",
"nyc": "^15.1.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"codecov": "^3.7.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^8.0.1",
"nodemon": "^2.0.4"
}
}