-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^14.18.32",
"@types/validator": "^13.7.8",
"concurrently": "^7.4.0",
"gts": "^3.1.1",
"nodemon": "^2.0.20",
"ts-node-dev": "^2.0.0",
"vite": "^2.9.15",
"vite-plugin-node": "^1.0.0"
},
"scripts": {
"dev": "concurrently \"vite\" nodemon",
"build": "vite build",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"dependencies": {
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"body-parser": "^1.20.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.0",
"inversify": "^6.0.1",
"mongodb": "^4.11.0",
"mongoose": "^6.7.1",
"morgan": "^1.10.0",
"remove": "^0.1.5",
"rotating-file-stream": "^3.0.4",
"sequelize": "^6.25.3",
"sequelize-typescript": "^2.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}