-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 987 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
{
"name": "NESAC_front",
"version": "1.0.0",
"description": "The frontend for our semantic segmentation model. \r A part of the PS1 project we are working on.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"front": "npm start --prefix nesac_frontend",
"dev": "concurrently \"npm run server\" \"npm run front\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Taarushthenoob/NESAC_front.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Taarushthenoob/NESAC_front/issues"
},
"homepage": "https://github.com/Taarushthenoob/NESAC_front#readme",
"dependencies": {
"@tensorflow/tfjs-node": "^3.8.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-fileupload": "^1.2.1"
},
"devDependencies": {
"concurrently": "^6.2.0",
"nodemon": "^2.0.12"
}
}