-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.18 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "cannon-api",
"version": "0.0.0",
"description": "The ultimate webapp for the ultimate event!",
"main": "server/index.js",
"scripts": {
"run": "nodemon server/index.js | bunyan",
"start": "node server/index.js | bunyan",
"production": "NODE_ENV=production node server/index.js | bunyan",
"mon": "nodemon -e js,hbs server/index.js | bunyan",
"test": "./node_modules/.bin/lab server/test -l -m 2000 --verbose",
"test-cov": "lab server/test -c",
"gen-keys": "mkdir -p keys; ssh-keygen -t rsa -b 4096 -f ./keys/token.key -q -N \"\"; openssl rsa -in ./keys/token.key -pubout -outform PEM -out ./keys/token.pub",
"lint": "standard | snazzy"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.13.4"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git://github.com/sinfo/cannon-api.git"
},
"author": "SINFO Dev Team <devteam@sinfo.org> (https://github.com/sinfo)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sinfo/cannon-api/issues"
},
"homepage": "https://github.com/sinfo/cannon-api",
"dependencies": {
"@aws-sdk/client-s3": "^3.272.0",
"@hapi/basic": "^6.0.0",
"@hapi/boom": "^9.1.4",
"@hapi/hapi": "^20.2.1",
"@hapi/inert": "^6.0.5",
"@hapi/vision": "^6.1.0",
"adm-zip": "^0.5.9",
"async": "^3.2.3",
"axios": "^0.26.0",
"aws-sdk": "^2.814.0",
"bunyan": "^1.8.15",
"esprima": "^4.0.1",
"good": "^2.3.0",
"google-auth-library": "^7.14.0",
"handlebars": "^4.7.7",
"hapi-auth-bearer-token": "^8.0.0",
"hapi-swagger": "~14.2.5",
"hoek": "^2.11.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.14.2",
"mime": "^3.0.0",
"moment": "^2.29.2",
"mongoose": "6.2.4",
"nodepdf": "^1.3.2",
"parse-http-header": "^1.0.1",
"qr-image": "~3.2.0",
"qs": "^6.10.3",
"request": "^2.44.0",
"underscore": "^1.13.2",
"urlencode": "^1.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@hapi/code": "^8.0.7",
"@hapi/lab": "^24.5.1",
"eslint": "^8.10.0",
"nodemon": "~2.0.15",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"standard": "^16.0.4"
}
}