-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 3.24 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
{
"name": "blueprintnotincluded-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc -b",
"dev": "ts-node-dev --respawn --transpile-only ./app/server.ts",
"prod": "tsc -b && node ./build/server.js",
"prebuild": "rm -rf build/",
"build": "npm run build:backend && npm run build:lib && npm run build:frontend",
"build:backend": "tsc -b",
"build:lib": "tsc -b lib",
"build:frontend": "(cd frontend && npm run build -- --output-path=../build/app/public/)",
"postbuild": "./scripts/copy_assets.sh && ./scripts/copy_lib.sh && ./scripts/copy_views.sh && ./scripts/copy_public.sh",
"serve:prod": "(cd build && node ./app/server.js)",
"seed": "node --expose_gc ./build/app/api/batch/extract-export.js",
"updateBasedOn": "tsc && node ./build/api/batch/update-based-on.js",
"updatePositionCorrection": "tsc && node ./build/api/batch/update-position-correction.js",
"updateThumbnail": "ts-node-dev --expose_gc --max_old_space_size=4096 --transpile-only ./app/api/batch/update-thumbnail.ts",
"generateIcons": "ts-node-dev --expose_gc --max_old_space_size=4096 --transpile-only ./app/api/batch/generate-icons.ts",
"generateGroups": "ts-node-dev --expose_gc --max_old_space_size=4096 --transpile-only ./app/api/batch/generate-groups.ts",
"generateWhite": "ts-node-dev --expose_gc --max_old_space_size=4096 --transpile-only ./app/api/batch/generate-white.ts",
"generateRepack": "ts-node-dev --expose_gc --max_old_space_size=4096 --transpile-only ./app/api/batch/generate-repack.ts",
"fixHtmlLabels": "ts-node-dev --expose_gc --max_old_space_size=4096 --transpile-only ./app/api/batch/fix-html-labels.ts",
"addInfoIcons": "ts-node-dev --expose_gc --max_old_space_size=4096 --transpile-only ./app/api/batch/add-info-icons.ts",
"testCanvas": "ts-node-dev --expose_gc --max_old_space_size=4096 --transpile-only ./app/api/batch/test-canvas.ts",
"postinstall": "cd frontend && npm install"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/jsdom": "^16.2.3",
"adm-zip": "^0.5.10",
"canvas": "^2.6.1",
"crypto-js": "^3.1.9-1",
"csharp-binary-stream": "^1.0.2",
"dotenv": "^8.2.0",
"ejs": "^3.1.9",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-recaptcha": "^5.0.1",
"helmet": "^4.1.0",
"isbot": "^3.6.8",
"jimp": "^0.14.0",
"jsdom": "^16.3.0",
"jsdom-global": "^3.0.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.7",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pixi.js-legacy": "^5.3.0",
"request-ip": "^2.1.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/crypto-js": "^3.1.43",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/express-jwt": "0.0.42",
"@types/fs-extra": "^11.0.1",
"@types/jsonwebtoken": "^8.3.5",
"@types/mongodb": "^3.3.6",
"@types/mongoose": "^5.5.23",
"@types/passport": "^1.0.1",
"@types/passport-local": "^1.0.33",
"@types/request-ip": "0.0.34",
"fs-extra": "^11.1.1"
},
"engines": {
"node": "^14.18",
"npm": "^6.14"
}
}