-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
55 lines (55 loc) · 2.14 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
47
48
49
50
51
52
53
54
55
{
"name": "lockdown",
"version": "0.0.0",
"scripts": {
"start": "es-dev-server --app-index index.html --watch --open --node-resolve",
"build": "rimraf build && rollup -c rollup.config.js",
"start:build": "es-dev-server --root-dir build --compatibility none --open",
"prepare-pwa-assets": "./node_modules/.bin/pwa-asset-generator Assets/logo.png src/assets/pwa --manifest manifest.json --index index.html && ./node_modules/.bin/pwa-asset-generator Assets/logo-dark.png src/assets/pwa --dark-mode --background '#303136' --splash-only --index index.html && npm run format:index",
"lint": "prettier \"src/**/*.{js,jsx,css,md}\" \"package.json\" --check",
"format": "prettier \"src/**/*.{js,jsx,css,md}\" \"package.json\" --write && npm run format:index",
"format:index": "prettier \"index.html\" \"package.json\" --write",
"minify-json": "node script/minify-json.js"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-modules": "^0.1.3",
"@open-wc/rollup-plugin-html": "^0.3.4",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"babel-plugin-bundled-import-meta": "^0.3.2",
"babel-plugin-htm": "^3.0.0",
"es-dev-server": "^1.56.1",
"husky": "^4.2.3",
"prettier": "^2.0.2",
"pwa-asset-generator": "^3.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.22.2",
"rollup-plugin-apply-sw-registration": "^0.1.5",
"rollup-plugin-babel": "^5.0.0-alpha.1",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-workbox": "^5.0.1",
"uglifycss": "0.0.29"
},
"dependencies": {
"@a11y/focus-trap": "^1.0.5",
"bulma": "^0.8.0",
"csz": "^1.2.0",
"date-fns": "^2.15.0",
"htm": "^3.0.3",
"lodash-es": "^4.17.15",
"preact": "^10.4.6",
"pwa-helpers": "^0.9.1",
"rollup-plugin-copy": "^3.3.0",
"rslider": "^2.16.3"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}