-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 KB
/
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
36
37
38
39
40
{
"name": "sudoku-buster",
"version": "0.0.114",
"description": "Web app to scan and solve a Sudoku puzzle",
"scripts": {
"eslint": "eslint .",
"build": "webpack",
"build:prod": "webpack --mode production",
"start": "node server",
"start:dev": "webpack serve --port 3092 --static build"
},
"author": "Jonathan Taylor",
"license": "MIT",
"dependencies": {
"@tensorflow/tfjs": "^3.20.0",
"axios": "^0.27.2",
"chart.js": "^2.9.4",
"dlxlib": "^2.0.0-alpha.2",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"heroku-ssl-redirect": "^0.1.1",
"loglevel": "^1.8.0",
"moment": "^2.29.4",
"mongodb": "^3.7.3",
"morgan": "^1.10.0",
"ramda": "^0.28.0",
"stats.js": "^0.17.0"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-almost": "^1.0.1",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^7.32.0",
"html-webpack-plugin": "^5.5.0",
"mocha": "^8.4.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.1"
}
}