-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
43
44
45
{
"name": "cwqr",
"version": "1.0.0",
"description": "ClassWiz QR Parser",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build:prod && npx wrangler pages dev ./dist --ip=0.0.0.0 --port=8790",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CalcWorld/ClassWizQR.git"
},
"keywords": [
"casio",
"classwiz",
"casio-calc",
"qr"
],
"author": "CalcWorld",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/CalcWorld/ClassWizQR/issues"
},
"homepage": "https://github.com/CalcWorld/ClassWizQR#readme",
"dependencies": {
"decimal.js": "^10.4.3"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@webpack-cli/generators": "^3.0.7",
"babel-loader": "^9.2.1",
"html-webpack-plugin": "^5.5.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0"
}
}