-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 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
40
{
"name": "todolistproject",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --require @babel/register --timeout 5000",
"start": "nodemon src/index.js --ext js,graphql --exec babel-node",
"debug": "nodemon --inspect src/index.js",
"docker": "set HOST=0.0.0.0&& npm start",
"lint": "eslint . --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"graphql-yoga": "^1.18.3",
"jsonwebtoken": "^8.5.1",
"mocha": "^6.2.0",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"validator": "^12.1.0",
"vue": "^2.6.11",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2"
}
}