-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.77 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.77 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
{
"name": "web-control-plus",
"version": "0.1.1",
"description": "Web interface to control Lego hubs",
"main": "dist/app.js",
"scripts": {
"dev": "node dev/server.js",
"lint:js": "eslint --ext .jsx,.js src/** --fix",
"lint:scss": "stylelint style/**",
"lint": "npm run lint:scss && npm run lint:js",
"build:clean": "rm -r dist/*",
"build:src": "parcel build --public-url . ./index.html --out-dir dist",
"build": "npm run build:clean && npm run build:src",
"publish": "npm run build && gh-pages -d dist"
},
"author": "aileo",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.6.1",
"@material-ui/icons": "^4.5.1",
"async": "^3.1.0",
"baobab": "^2.5.2",
"baobab-react": "^4.0.0",
"bootstrap-scss": "^4.3.1",
"classnames": "^2.2.6",
"lodash": "^4.17.19",
"node-poweredup": "^5.0.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"express": "^4.17.1",
"gh-pages": "^2.1.1",
"http-proxy-middleware": "^0.19.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-asset-copier": "^1.0.0",
"parcel-plugin-externals": "^0.2.0",
"prettier": "^1.18.2",
"sass": "^1.22.3",
"sass-lint": "^1.13.1",
"stylelint": "^11.1.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-scss": "^3.12.1",
"typescript": "^3.7.2"
},
"browserslist": [
"last 3 Chrome versions"
]
}