-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 776 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 776 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
{
"name": "ml.handwriting",
"version": "0.0.1",
"description": "machine learning handwriting",
"main": "gruntfile.js",
"scripts": {
"build" : "grunt coffee less",
"watch" : "grunt watch",
"start" : "node ./src/app.js",
"docker" : "docker build -t listba/ml:latest .",
"docker-run" : "docker run --rm -it -p 3000:3000 listba/ml:latest"
},
"author": "Ben List",
"license": "ISC",
"devDependencies": {
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
"grunt-contrib-coffee": "^2.1.0",
"grunt-contrib-less": "^3.0.0",
"grunt-contrib-watch": "^1.1.0"
},
"dependencies": {
"body-parser": "^1.19.1",
"ejs": "^3.1.7",
"express": "^4.17.2",
"fs": "0.0.2",
"nconf": "^0.11.4",
"request": "^2.69.0"
}
}