-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.18 KB
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
39
40
41
42
43
{
"name": "food-server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "npm run prod",
"server": "babel-node ./src/bin/www",
"server:prod": "node ./dist/bin/www",
"dev": "NODE_ENV=development npm-run-all server",
"clean": "rimraf dist",
"build": "babel ./src --out-dir dist",
"prod": "NODE_ENV=production npm-run-all clean build server:prod",
"watch": "nodemon"
},
"dependencies": {
"@babel/runtime": "^7.6.2",
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"@tensorflow-models/mobilenet": "^2.0.4",
"@tensorflow/tfjs": "^1.2.10",
"@tensorflow/tfjs-node": "^1.2.10",
"body-parser": "^1.19.0",
"connect-busboy": "0.0.2",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "^4.16.4",
"express-fileupload": "^1.1.9",
"formidable": "^1.2.1",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"tfjs": "^0.6.0"
},
"devDependencies": {
"nodemon": "^1.19.3"
}
}