-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 928 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": "sudoku-scanner",
"version": "0.0.44",
"description": "Use deep learning to recognise a Sudoku puzzle from a scanned image",
"main": "index.js",
"scripts": {
"eslint": "eslint .",
"build": "webpack",
"start": "node server",
"start:dev": "node server | webpack-dev-server",
"heroku-postbuild": "npm run build"
},
"author": "Jonathan Taylor",
"license": "MIT",
"dependencies": {
"@tensorflow/tfjs": "^1.2.9",
"@tensorflow/tfjs-vis": "^1.1.0",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"dlxlib": "^2.0.0-alpha.2",
"express": "^4.17.1",
"loglevel": "^1.6.4",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"ramda": "^0.26.1"
},
"devDependencies": {
"copy-webpack-plugin": "^5.0.4",
"eslint": "^6.3.0",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0"
}
}