-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"private": true,
"name": "preact-redux-bundler-pwa-starter",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production preact build --template static/template.html",
"start": "serve build --single",
"dev": "preact watch --template static/template.html",
"format": "prettier --write \"src/**/*.js\" && echo -e '\\033[0;32m'💅 Just use prettier'\\033[0m'"
},
"eslintConfig": {
"extends": [
"eslint-config-synacor",
"eslint-config-prettier"
],
"rules": {
"no-console": 0
}
},
"eslintIgnore": [
"build/*"
],
"devDependencies": {
"copy-webpack-plugin": "^4.5.2",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-synacor": "^3.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.2.1",
"preact-cli": "^3.0.0-next.8",
"preact-render-spy": "^1.2.1",
"prettier": "^1.14.2",
"serve": "^10.0.0"
},
"dependencies": {
"emotion": "^9.2.8",
"internal-nav-helper": "^1.0.2",
"money-clip": "^2.1.0",
"polished": "^2.0.3",
"preact": "^8.3.1",
"preact-compat": "^3.18.4",
"preact-emotion": "^9.2.8",
"redux-bundler": "^21.2.2",
"redux-bundler-preact": "^1.1.0",
"styled-system": "^3.0.2"
}
}