-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.58 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.58 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
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
85
{
"scripts": {
"start": "webpack-dev-server",
"build": "rm -rf ./dist && webpack",
"test": "jest",
"lint": "eslint --ignore-pattern __tests__ src/ && eslint --config .eslintrc-test.js --ext test.js src/",
"lint-fix": "eslint --fix --ignore-pattern __tests__ src/ && eslint --fix --config .eslintrc-test.js --ext test.js src/",
"precommit": "lint-staged",
"deploy": "NODE_ENV=production yarn build && firebase deploy --only hosting"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">=8.2.0"
},
"dependencies": {
"autoprefixer": "^7.1.2",
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.1",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"classnames": "^2.2.5",
"color": "^2.0.0",
"connected-react-router": "^4.3.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"date-fns": "^1.29.0",
"dotenv": "^4.0.0",
"dotenv-webpack": "^1.5.4",
"exports-loader": "^0.6.4",
"extract-text-webpack-plugin": "^3.0.2",
"history": "^4.7.2",
"html-webpack-plugin": "^2.30.0",
"imports-loader": "^0.7.1",
"modularscale-sass": "^3.0.4",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"prop-types": "^15.5.10",
"ramda": "^0.25.0",
"randomatic": "^2.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.2",
"react-test-renderer": "^16.2.0",
"react-transition-group": "^2.2.0",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"sanitize.css": "^5.0.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"superagent": "^3.8.2",
"svg-react-loader": "^0.4.5",
"url-search-params": "^0.10.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7",
"webpack-merge": "^4.1.0"
},
"devDependencies": {
"eslint": "^4.3.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^6.0.0"
}
}