-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 763 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 763 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn src/server.ts",
"build": "tsc",
"start": "node dist/src/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^18.7.11",
"@types/uuid": "^8.3.4",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-validator": "^6.14.2",
"http-terminator": "^3.2.0",
"sequelize": "^6.21.4",
"sqlite3": "^5.0.11",
"uuid": "^8.3.2",
"validator": "^13.7.0"
}
}