-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 825 Bytes
/
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
{
"scripts": {
"clean": "rimraf dist/*",
"copy-assets": "ts-node tools/copyAssets.ts",
"build": "npm-run-all clean",
"prestart": "npm run build",
"start": "node ."
},
"dependencies": {
"axios": "^1.3.6",
"bcrypt": "^5.1.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"mongodb": "^5.6.0",
"mongoose": "^7.3.1",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.5.0",
"@types/shelljs": "^0.8.12",
"fs-extra": "^11.1.1",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.1",
"shelljs": "^0.8.5",
"ts-node": "^10.9.1"
}
}