-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.26 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
{
"name": "banyan",
"version": "0.1.0",
"description": "Dropbox file size browser",
"homepage": "https://github.com/osteele/banyan",
"author": "Oliver Steele <steele@osteele.com>",
"repository": "github:osteele/banyan",
"license": "MIT",
"scripts": {
"analyse": "elm-analyse",
"analyze": "elm-analyse",
"build": "poi build",
"deploy": "yarn build && netlifyctl deploy -b dist",
"format": "eslint --fix index.js src && elm-format --yes src",
"install": "elm-package install -y && cd tests && elm-package install -y",
"lint": "eslint index.js src && elm-format --validate src",
"prebuild": "rimraf dist",
"reinstall": "rimraf node_modules elm-stuff tests/elm-stuff && yarn install",
"start": "poi",
"test:watch": "elm test --watch",
"test": "elm test"
},
"devDependencies": {
"elm": "^0.18.0",
"elm-analyse": "^0.13.3",
"elm-format": "^0.6.1-alpha",
"elm-test": "^0.18.12",
"eslint": "^4.18.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"node-sass": "^4.7.2",
"poi": "^9.6.12",
"poi-preset-elm": "^1.1.1",
"sass-loader": "^6.0.6",
"webpack": "^3.10.0"
},
"dependencies": {
"highcharts": "^6.0.4",
"semantic-ui-css": "^2.2.12"
}
}