-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 944 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
35
36
37
38
{
"name": "prod_server",
"version": "1.0.0",
"description": "`Build with Nodejs and Typescript.`",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rimraf dist && npx tsc",
"prestart": "npm run build",
"start": "node dist/index.js",
"preserve": "npm run build",
"dev": "concurrently \"npx tsc -w\" \"nodemon dist/index.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.6",
"@types/node": "^20.6.2",
"express": "^4.18.2",
"nodemon": "^3.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"body-parser": "^1.20.2",
"colors": "^1.4.0",
"concurrently": "^8.2.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"helmet": "^7.0.0",
"mongoose": "^7.5.2",
"morgan": "^1.10.0",
"rimraf": "^5.0.5"
}
}