-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 2.28 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
{
"name": "backend",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start:dev": "tsnd --watch src --respawn --transpile-only --rs src/bin/www.ts",
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "npm run build_front && tsc",
"tsc": "tsc",
"build_front": "cd ../frontend && npm install && npm run build && node copy.js",
"start": "node dist/bin/www",
"test": "echo \"Error: no test specified\" && exit 1",
"docker": "npm install && tsc"
},
"dependencies": {
"apicache": "^1.6.2",
"compression": "^1.7.4",
"connect-history-api-fallback": "^1.6.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"debug": "^4.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"fast-csv": "^4.3.6",
"firebase-admin": "^10.0.2",
"iconv-lite": "^0.6.2",
"image-type": "^4.1.0",
"lru-cache": "^6.0.0",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"nocache": "^3.0.1",
"node-vault": "^0.9.20",
"serve-static": "^1.14.1",
"sharp": "^0.29.2",
"stream-to-promise": "^3.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/apicache": "^1.2.2",
"@types/compression": "^1.7.0",
"@types/connect-history-api-fallback": "^1.3.3",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/csurf": "^1.11.0",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.8",
"@types/express-fileupload": "^1.1.6",
"@types/express-handlebars": "^3.1.0",
"@types/katex": "^0.11.1",
"@types/lru-cache": "^5.1.1",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-highlightjs": "^3.3.1",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.6",
"@types/request": "^2.48.5",
"@types/sharp": "^0.29.3",
"@types/stream-to-promise": "^2.2.1",
"@types/uuid": "^8.3.3",
"http-proxy-middleware": "^2.0.1",
"ts-node-dev": "^1.0.0-pre.57",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
}
}