-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 853 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 853 Bytes
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
{
"name": "backend",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./dist",
"build": "tsc",
"server": "tsc-watch --onSuccess \"node ./dist\""
},
"dependencies": {
"@types/uuid": "^8.3.3",
"adm-zip": "^0.5.9",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"multer": "^1.4.3",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.39",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/adm-zip": "^0.4.34",
"@types/multer": "^1.4.7",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"ts-node": "^10.2.1",
"tsc-watch": "^4.4.0",
"typescript": "4.4.4"
}
}