-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 949 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
36
37
{
"name": "arithmedoku",
"version": "1.0.0",
"description": "A Sudoku-like puzzle with an arithmetic twist, inspired by KenKen",
"main": "index.js",
"browserslist": [
"defaults"
],
"scripts": {
"start": "webpack serve --mode=development",
"build": "webpack --mode=production"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"find-unused-exports": "^2.0.0",
"handlebars": "^4.7.7",
"handlebars-webpack-plugin": "^2.2.1",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"babel-loader": "^8.2.2",
"core-js": "^3.15.2",
"css-loader": "^3.6.0",
"mini-css-extract-plugin": "^2.1.0",
"mobx": "^6.1.7",
"mobx-state-tree": "^5.0.1",
"regenerator-runtime": "^0.13.7",
"sass": "^1.35.2",
"sass-loader": "^12.1.0",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2"
}
}