-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.27 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
{
"homepage": "https://github.com/haykkh/buchulator-v2#readme",
"license": "MIT",
"main": "src/index.js",
"name": "buchulator",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/haykkh/buchulator-v2.git"
},
"scripts": {
"start": "rm -rf dist && parcel src/index.html -p 3000 --open",
"build": "rm -rf docs && parcel build src/index.html -d docs --public-url ./"
},
"version": "0.0.0",
"author": "haykkh",
"bugs": {
"url": "https://github.com/haykkh/buchulator-v2/issues"
},
"cache": {
"inDev": true,
"swDest": "service-worker.js"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"parcel-bundler": "^1.12.3",
"parcel-plugin-sw-cache": "^0.3.1",
"sass": "^1.22.12"
},
"dependencies": {
"@hyperapp/events": "^0.0.4",
"bulma": "^0.8.0",
"eslint-plugin-jest": "^23.8.0",
"eslint-plugin-react": "^7.18.3",
"hyperapp": "^2.0.4",
"hyperapp-debug": "^1.0.0-beta.5"
},
"babel": {
"presets": [
"@babel/env"
],
"plugins": [
[
"@babel/transform-react-jsx",
{
"pragma": "h"
}
]
]
}
}