-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.5 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
{
"name": "ultra-result",
"author": "Andreas Loeffler <al@exitzero.de>",
"license": "GPL-3.0-or-later",
"version": "0.2.2",
"private": true,
"scripts": {
"start": "UR_SESSION_SECRET=$(head -c32 /dev/urandom | base64) UR_SESSION_KEY=$(head -c8 /dev/urandom | base64) UR_COOKIESESSION_KEY1=$(head -c30 /dev/urandom | base64) UR_COOKIESESSION_KEY2=$(head -c30 /dev/urandom | base64) UR_COOKIEPARSER_KEY=$(head -c30 /dev/urandom | base64) UR_CSRF_TOKEN_KEY=$(head -c30 /dev/urandom | base64) node ./bin/ultraresult",
"test": "jshint app.js bin/ultraresult"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"chai": "^4.3.6",
"cheerio": "^1.0.0-rc.12",
"connect-mongo": "^4.6.0",
"cookie-parser": "~1.4.6",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-session": "~1.17.3",
"fs": "^0.0.1-security",
"helmet": "^6.0.0",
"https": "^1.0.0",
"jshint": "^2.13.5",
"mocha": "^10.0.0",
"mongodb": "^4.10.0",
"mongoose": "^6.6.2",
"monk": "^7.3.4",
"monk-middleware-debug": "^0.2.0",
"morgan": "^1.10.0",
"mquery": "^4.0.3",
"nconf": "^0.12.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^7.1.2",
"project-version": "^2.0.0",
"pug": "^3.0.2",
"saslprep": "^1.0.3",
"serve-favicon": "~2.5.0",
"session-file-store": "^1.5.0"
},
"devDependencies": {
"debug": "^4.3.4",
"jest": "^29.0.3",
"mongodb-memory-server": "^8.9.3"
}
}