-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 985 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": "iot-boilerplate-ctl",
"version": "1.0.0",
"license": "ISC",
"description": "JS Front control for IoT based on ESP32",
"repository": {
"type": "git",
"url": "git+https://github.com/RoiEf/IoT_Boiler_CTL.git"
},
"keywords": [
"preact",
"microbundle",
"preact-router",
"example",
"SPA",
"PWA"
],
"source": "src/index.js",
"scripts": {
"build": "microbundle -f modern --no-sourcemap --external none -o build/bundle.js",
"postbuild": "inliner.exe -i build/index.html -o html.h -ahg",
"dev": "npm run -s build_dev & npm run -s serve",
"build_dev": "microbundle -f modern --external none -o build_dev/bundle.js --watch",
"serve": "sirv build_dev -Dc"
},
"dependencies": {
"preact": "^10.5.12",
"preact-router": "^3.2.1"
},
"devDependencies": {
"@types/babel__core": "^7.1.12",
"inliner": "^1.13.1",
"microbundle": "^0.13.0",
"rollup": "^2.38.4",
"sirv-cli": "^1.0.11"
}
}