This repository was archived by the owner on Jun 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·108 lines (108 loc) · 3.6 KB
/
package.json
File metadata and controls
executable file
·108 lines (108 loc) · 3.6 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "pwa-starter",
"version": "1.0.0",
"description": "PWA Starter with Preact",
"main": "server/index.js",
"heroku-run-build-script": true,
"scripts": {
"preinstall": "if test -z \"$NODE_ENV\"; then rm .git/hooks/pre-commit; cp pre-commit.sh .git/hooks/pre-commit; else rm -rf public; mkdir public; fi",
"start": "if test -z \"$NODE_ENV\"; then npm run dev; else npm run browse; fi",
"dev": "npm-run-all --parallel build:dev watch-assets watch-styles",
"prebuild:dev": "npm run lint --silent",
"build:dev": "rollup -c config/dev.js -w",
"watch-assets": "sane 'npm run prelint' src/assets",
"watch-styles": "sane 'npm run less' src --glob='**/*.less' -p",
"less": "node bundle-less.js",
"browse": "node server/index.js",
"prebuild": "npm run test",
"build": "rollup -c config/prod.js & npm run less",
"postbuild": "sleep 10 && react-snap",
"prelint": "rm -rf public; mkdir public; cp -r src/assets/* public/",
"lint": "eslint ./src",
"pretest": "npm run lint",
"test": "jest"
},
"lint-staged": {
"*.js": [
"eslint ./src"
]
},
"reactSnap": {
"source": "public",
"puppeteerArgs": [
"--no-sandbox",
"--disable-setuid-sandbox"
]
},
"engines": {
"node": ">=10.0.0"
},
"keywords": [],
"author": "Adrian Unger",
"license": "MIT",
"dependencies": {
"@app-elements/avatar": "2.0.1",
"@app-elements/carousel": "2.0.2",
"@app-elements/dropdown": "4.0.1",
"@app-elements/equal": "^1.0.4",
"@app-elements/helmet": "3.0.6",
"@app-elements/image": "^2.0.0",
"@app-elements/loading-indicator": "2.0.1",
"@app-elements/modal": "4.0.3",
"@app-elements/notification": "3.0.2",
"@app-elements/router": "3.4.1",
"@app-elements/use-form": "^1.0.2",
"@app-elements/use-mapped-state": "^1.0.0",
"@app-elements/use-request": "2.1.4",
"@app-elements/use-store-path": "^1.0.2",
"@wasmuth/path-reducer": "^0.1.6",
"atom": "1.4.1",
"compression": "1.7.4",
"polka": "0.5.2",
"preact": "10.5.5",
"react-transition-group": "^4.4.1",
"sirv": "1.0.7",
"wasmuth": "2.0.6"
},
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-spread": "7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/preset-react": "7.12.5",
"@rollup/plugin-alias": "3.1.1",
"@rollup/plugin-babel": "5.2.1",
"@rollup/plugin-commonjs": "16.0.0",
"@rollup/plugin-inject": "4.0.2",
"@rollup/plugin-node-resolve": "10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-run": "2.0.2",
"babel-eslint": "10.1.0",
"babel-plugin-module-resolver": "4.0.0",
"eslint": "7.12.1",
"eslint-config-standard": "14.1.1",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-standard": "4.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"less": "3.12.2",
"less-plugin-glob": "^3.0.0",
"lint-staged": "10.5.1",
"npm-run-all": "4.1.5",
"react-snap": "1.23.0",
"rollup": "2.33.1",
"rollup-plugin-css-only": "git+https://github.com/staydecent/rollup-plugin-css-only.git",
"rollup-plugin-dev": "1.1.2",
"rollup-plugin-livereload": "2.0.0",
"rollup-plugin-serve": "1.1.0",
"rollup-plugin-terser": "7.0.2",
"sane": "4.1.0"
}
}