-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "todo-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"test": "export NODE_ENV=test && npm run-script lint && mocha server/**/*.test.js --exit",
"test-watch": "nodemon --exec 'npm test'",
"lint": "eslint server/server.js",
"future-lint": "eslint --ignore-path .gitignore .",
"lint-autofix": "./node_modules/.bin/eslint --fix --ignore-path .gitignore ."
},
"engines": {
"node": "10.1.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"crypto-js": "^3.1.9-1",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.10",
"mongodb": "^3.0.10",
"mongoose": "^5.1.5",
"save": "^2.3.2",
"validator": "^10.4.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"expect": "^23.1.0",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"supertest": "^3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DBattou/node-todo-api.git"
},
"bugs": {
"url": "https://github.com/DBattou/node-todo-api/issues"
},
"homepage": "https://github.com/DBattou/node-todo-api#readme",
"description": ""
}