-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"version": "1.0.0",
"name": "hyperapp-boilerplate",
"description": "Hyperapp PWA boilerplate",
"author": "Alexandre Lotte",
"license": "MIT",
"scripts": {
"start": "parcel src/index.html --open",
"build": "rimraf .cache && rimraf dist && parcel build ./src/index.html --no-source-maps --detailed-report"
},
"babel": {
"plugins": [
[
"babel-plugin-jsx-pragmatic",
{
"module": "hyperapp",
"import": "h",
"export": "h"
}
]
]
},
"dependencies": {
"emotion": "^10.0.14",
"hyperapp": "^2.0.0",
"sanitize.css": "^10.0.0"
},
"devDependencies": {
"autoprefixer": "^9.6.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.2",
"babel-plugin-jsx-pragmatic": "^1.0.2",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-react": "^7.14.1",
"parcel-bundler": "^1.12.3",
"parcel-plugin-static-files-copy": "^2.1.2",
"rimraf": "^2.6.3",
"workbox-cli": "^4.3.1"
}
}