-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.04 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.04 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "hackerAPI",
"version": "3.1.3",
"private": true,
"scripts": {
"start": "DEBUG=hackboard:* NODE_ENV=test nodemon --ignore gcp_creds.json ./bin/www.js",
"start-windows": "set DEBUG=hackboard:* && set NODE_ENV=test && nodemon --ignore gcp_creds.json ./bin/www.js",
"deploy": "NODE_ENV=deployment node ./bin/www.js",
"debug": "DEBUG=hackboard:* NODE_ENV=test nodemon --ignore gcp_creds.json ./bin/www.js",
"test": "DEBUG=hackboard:* NODE_ENV=test mocha --reporter spec tests/**.js --exit",
"seed": "NODE_ENV=test node ./seed/index.js",
"docs": "apidoc -i ./routes -o ./docs/api/",
"format": "prettier --write '**/*.js'",
"lint": "eslint --fix '**/*.js'"
},
"engines": {
"node": "14.x"
},
"dependencies": {
"@google-cloud/storage": "^5.8.5",
"@sendgrid/mail": "^6.5.5",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.5",
"cookie-session": "^2.0.0-rc.1",
"cors": "^2.8.5",
"cryptiles": "^4.1.3",
"debug": "~4.1.1",
"dotenv": "^8.6.0",
"express": "~4.17.1",
"express-validator": "^6.12.0",
"express-winston": "^2.6.0",
"handlebars": "^4.7.7",
"jsonwebtoken": "^8.5.1",
"memory-cache": "^0.2.0",
"mongoose": "^5.12.14",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"promise.allsettled": "^1.0.4",
"q": "^1.5.1",
"qrcode": "^1.4.4",
"winston": "^2.4.5"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/google-cloud__storage": "^1.7.2",
"@types/mongodb": "^4.0.7",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.6",
"apidoc": "^0.17.7",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-prettier": "3.1.1",
"mocha": "^6.2.3",
"nodemon": "^2.0.7",
"prettier": "1.19.1"
}
}