-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
46
{
"name": "last-update",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:royyanbach/last-update.git",
"author": "royyanbach <royyan.bachtiar@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "parcel index.html",
"build": "parcel build index.html --no-source-maps",
"build:github": "yarn build --public-url /last-update/ -d docs",
"postbuild": "NODE_ENV=production node generate-sw",
"postbuild:github": "OUT_DIR=docs yarn postbuild"
},
"alias": {
"react": "preact/compat",
"react-dom/test-utils": "preact/test-utils",
"react-dom": "preact/compat"
},
"babel": {
"plugins": [
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "h",
"pragmaFrag": "Fragment"
}
]
]
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-react-jsx": "^7.12.1",
"parcel-bundler": "^1.12.4",
"workbox-build": "^5.1.4",
"workbox-expiration": "^5.1.4",
"workbox-precaching": "^5.1.4",
"workbox-routing": "^5.1.4",
"workbox-strategies": "^5.1.4"
},
"dependencies": {
"idb": "^5.0.7",
"preact": "^10.5.5",
"preact-material-components": "^1.6.1"
}
}