This repository has been archived by the owner on Apr 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.93 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"private": true,
"name": "bitbrew-console",
"version": "1.0.0-dev",
"description": "Console for BitBrew's second-generation connected vehicle platform.",
"homepage": "https://github.com/pdhoopr/bitbrew-console#readme",
"bugs": {
"url": "https://github.com/pdhoopr/bitbrew-console/issues"
},
"author": "Patrick Hooper <patrick.d.hooper@gmail.com> (https://patrickhooper.me)",
"repository": {
"type": "git",
"url": "https://github.com/pdhoopr/bitbrew-console.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config config/webpack.production.js",
"check:css": "stylelint '**/*.js'",
"check:format": "prettier --list-different '**/*.{css,html,js,json,md}'",
"check:js": "eslint '**/*.js'",
"ci": "run-p --aggregate-output --continue-on-error check:* && run-s build",
"format": "prettier --write '**/*.{css,html,js,json,md}'",
"start": "cross-env NODE_ENV=development webpack-dev-server --config config/webpack.development.js"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@reach/router": "^1.2.1",
"axios": "^0.18.0",
"core-js": "^3.0.1",
"jwt-decode": "^2.2.0",
"md5": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-modal": "^3.8.1",
"styled-components": "^4.2.0",
"uniqid": "^5.0.3",
"url-search-params-polyfill": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@svgr/webpack": "^4.2.0",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"cssnano": "^4.1.10",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-compat": "^3.1.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.2.0",
"ip": "^1.1.5",
"lint-staged": "^8.1.6",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.16",
"prettier": "^1.17.1",
"stylelint": "^10.0.1",
"stylelint-config-prettier": "^5.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-no-unsupported-browser-features": "^3.0.2",
"stylelint-order": "^3.0.0",
"stylelint-processor-styled-components": "^1.7.0",
"terser-webpack-plugin": "^1.2.3",
"thread-loader": "^2.1.2",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1"
}
}