-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 862 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 862 Bytes
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
{
"name": "bunny-api",
"version": "1.0.0",
"private": true,
"description": "RESTful API for CSIS3381 IAS Bash Bunny project",
"main": "app.js",
"scripts": {
"start": "node ./bin/www.js",
"test": "npm test"
},
"author": "Daniel W. Anner",
"license": "AGPL-3.0-only",
"dependencies": {
"body-parser": "^1.18.3",
"bunyan": "^1.8.12",
"cookie-parser": "^1.4.4",
"express": "^4.16.4",
"express-validation": "^1.0.2",
"joi": "^14.3.1",
"mysql": "^2.16.0",
"payload-validator": "^1.0.4",
"request": "^2.88.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"eslint-plugin-jsdoc": "^4.8.3",
"husky": "^1.3.1",
"prettier": "1.17.0",
"pretty-quick": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}