-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 868 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 868 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
{
"name": "sudoku-app",
"version": "2.0.0",
"description": "A beautiful Sudoku game - PWA + Android mobile app",
"main": "src/js/main.js",
"scripts": {
"build:dev": "webpack --mode development",
"build:prod": "node update-version.js && webpack --mode production",
"update-version": "node update-version.js",
"serve": "cd www && python -m http.server 8080"
},
"author": "Victor Burtman",
"license": "CC-BY-NC-4.0",
"devDependencies": {
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.97.0",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@capacitor/android": "^6.2.0",
"@capacitor/cli": "^6.2.0",
"@capacitor/core": "^6.2.0"
}
}