-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 889 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 889 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",
"description": "",
"main": "./dist/server.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/server.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/axios": "^0.14.0",
"axios": "^1.1.3",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"mongoose": "^6.5.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/node": "^18.7.14",
"@types/uuid": "^8.3.4",
"concurrently": "^7.4.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"typescript": "^4.8.2"
}
}