-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.46 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
{
"name": "blueprintnotincluded-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc -b",
"dev": "ts-node-dev --respawn --transpileOnly ./app/server.ts",
"prod": "tsc -b && node ./build/server.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 --transpileOnly ./app/api/batch/update-thumbnail.ts",
"generateIcons": "ts-node-dev --expose_gc --max_old_space_size=4096 --transpileOnly ./app/api/batch/generate-icons.ts",
"generateGroups": "ts-node-dev --expose_gc --max_old_space_size=4096 --transpileOnly ./app/api/batch/generate-groups.ts",
"generateWhite": "ts-node-dev --expose_gc --max_old_space_size=4096 --transpileOnly ./app/api/batch/generate-white.ts",
"generateRepack": "ts-node-dev --expose_gc --max_old_space_size=4096 --transpileOnly ./app/api/batch/generate-repack.ts",
"fixHtmlLabels": "ts-node-dev --expose_gc --max_old_space_size=4096 --transpileOnly ./app/api/batch/fix-html-labels.ts",
"addInfoIcons": "ts-node-dev --expose_gc --max_old_space_size=4096 --transpileOnly ./app/api/batch/add-info-icons.ts",
"testCanvas": "ts-node-dev --expose_gc --max_old_space_size=4096 --transpileOnly ./app/api/batch/test-canvas.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/jsdom": "^16.2.3",
"canvas": "^2.6.1",
"crypto-js": "^3.1.9-1",
"csharp-binary-stream": "^1.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-recaptcha": "^5.0.1",
"helmet": "^4.1.0",
"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.0.0-pre.43",
"typescript": "~3.5.3"
},
"devDependencies": {
"@types/passport": "^1.0.1",
"@types/passport-local": "^1.0.33",
"@types/request-ip": "0.0.34",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/mongodb": "^3.3.6",
"@types/mongoose": "^5.5.23",
"@types/crypto-js": "^3.1.43",
"@types/jsonwebtoken": "^8.3.5",
"@types/express-jwt": "0.0.42",
"tslint": "^5.20.0"
}
}