-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.52 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
{
"name": "untitled-password-finding-game",
"version": "0.1.0-alpha.17",
"description": "fun password finding game",
"main": "index.js",
"private": true,
"scripts": {
"compile": "tsc",
"copyStaticFiles": "copyfiles --up 1 \"src/**/*\" -e \"**/*.ts\" dist",
"start": "npm run compile && npm run copyStaticFiles && node ./dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mistertfy64/UntitledPasswordFindingGame.git"
},
"author": "mistertfy64",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mistertfy64/UntitledPasswordFindingGame/issues"
},
"homepage": "https://github.com/mistertfy64/UntitledPasswordFindingGame#readme",
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.1",
"@types/express-session": "^1.18.1",
"@types/jsdom": "^21.1.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.15.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.43.0",
"bcrypt": "^6.0.0",
"body-parser": "^2.2.0",
"cookie-parser": "^1.4.7",
"cookie-session": "^2.1.0",
"copyfiles": "^2.4.1",
"csrf-csrf": "^4.0.0",
"dompurify": "^3.2.5",
"dotenv": "^16.5.0",
"ejs": "^3.1.10",
"express": "^4.22.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"jsdom": "^26.1.0",
"markdown-it": "^14.1.0",
"markdown-it-sub": "^2.0.0",
"mongoose": "^8.14.1",
"serve-favicon": "^2.5.0"
}
}