-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 873 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
{
"name": "question_editor-api",
"version": "1.0.0",
"description": "Question Editor Web API",
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"start": "node src/app.js",
"fixStyle": "./node_modules/eslint/bin/eslint.js ./ --fix"
},
"author": "Fellipe Capelli <[email protected]>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "~4.16.4",
"joi": "^14.3.1",
"lodash": "^4.17.21",
"mongoose": "^5.4.10",
"multer": "^1.4.1",
"redis": "^2.8.0"
},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^0.15.0-rc.3"
}
}