-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.81 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
{
"name": "farm-clicker",
"version": "0.1.0",
"main": "index.js",
"repository": "https://github.com/aaronvanston/farm-clicker.git",
"author": "Aaron Vanston",
"license": "MIT",
"scripts": {
"start": "babel-node webpack/server.js",
"build": "yarn clean:dist && NODE_ENV=production webpack -p --config webpack/config.js",
"clean:dist": "rimraf ./dist",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"lodash": "^4.17.5",
"normalize.css": "^8.0.0",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-redux": "^5.0.7",
"react-tabs": "^2.2.2",
"redux": "^3.7.2",
"redux-batched-actions": "^0.2.1",
"styled-components": "^3.2.5"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.44",
"@babel/core": "7.0.0-beta.44",
"@babel/node": "^7.0.0-beta.44",
"@babel/preset-env": "^7.0.0-beta.44",
"@babel/preset-react": "^7.0.0-beta.44",
"@babel/preset-stage-0": "^7.0.0-beta.44",
"babel-eslint": "^8.2.3",
"babel-loader": "^8.0.0-beta",
"babel-plugin-root-import": "^5.1.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-babel-plugin-root-import": "^1.1.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^3.2.0",
"postcss-cssnext": "^3.1.0",
"postcss-flexbugs-fixes": "^3.3.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.3",
"react-hot-loader": "^4.1.0",
"rimraf": "^2.6.2",
"style-loader": "^0.20.3",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3"
}
}