-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 846 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
{
"name": "samplelabelingux",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node Server/server.ts",
"server": "nodemon Server/server.ts",
"client": "npm run start --prefix Client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"nodemon": "^2.0.15",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "4.7.4"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^18.7.14",
"concurrently": "^7.4.0",
"prettier": "2.5.1"
}
}