-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
41
42
{
"name": "smart-sudoku-solver",
"version": "1.0.0",
"description": "A smart sudoku solver",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --watch",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StanislavBreadless/smart-sudoku-solver.git"
},
"keywords": [
"js",
"vanilla",
"sudoku",
"sudoku-solver",
"algorithms"
],
"author": "Stanislav Bezkorovainyi (Breadless)",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/StanislavBreadless/smart-sudoku-solver/issues"
},
"homepage": "https://github.com/StanislavBreadless/smart-sudoku-solver#readme",
"dependencies": {
"normalize.css": "^8.0.1"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"worker-loader": "^2.0.0"
}
}