-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.89 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
{
"name": "growers_outlet_2",
"private": true,
"scripts": {
"lint": "yarn run eslint --ext .jsx,.js app/javascript",
"yarn:install": "echo 'Beginning yarn install!' && yarn install && echo 'Done installing yarn!'",
"clean:local": "echo 'Beginning cleaning in local environment!' && yarn clean && rm -rf .yarnclean && rm -dfr node_modules/ && echo 'Done cleaning local environment!' && yarn yarn:install",
"prod:clean": "echo 'Beginning cleaning in production environment!' && rm -Rf 'public/packs' && rm -Rf 'public/assets' && echo 'Done cleaning production environment!'",
"build": "yarn lint && bin/webpack-dev-server",
"start": "bin/rails s",
"prod:build": "echo 'Beginning production build with webpack!' && NODE_ENV=production RAILS_ENV=production bin/webpack && echo 'Done building webpack for production environment and precompiling assets for rails!'",
"prod:start": "echo 'Starting production server!' && RAILS_SERVE_STATIC_FILES=true RAILS_LOG_TO_STDOUT=true bin/rails s -e production",
"prod:local": "yarn clean:local && yarn prod:clean && yarn prod:build && heroku local -e .env.prod.heroku",
"heroku-postbuild": "yarn prod:clean && yarn prod:build"
},
"engines": {
"node": ">=v8.9.2",
"yarn": ">=1.3.2",
"npm": ">=5.5.1"
},
"dependencies": {
"agegate": "^3.0.0",
"autoprefixer": "^7.1.2",
"axios": "^0.16.2",
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.3",
"babel-loader": "7.x",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"coffee-loader": "^0.7.3",
"coffee-script": "^1.12.7",
"compression-webpack-plugin": "^1.0.0",
"css-loader": "^0.28.4",
"eslint": "^4.13.1",
"eslint-config-react-app": "^2.0.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.11.2",
"glob": "^7.1.2",
"js-yaml": "^3.9.1",
"node-sass": "^4.7.2",
"path-complete-extname": "^0.1.0",
"postcss-loader": "^2.0.6",
"postcss-smart-import": "^0.7.5",
"precss": "^2.0.0",
"prop-types": "^15.5.10",
"rails-erb-loader": "^5.1.0",
"react": "^16.0.0",
"react-cookie": "^2.1.1",
"react-dom": "^16.0.0",
"react-google-maps": "^9.2.1",
"react-html5video": "^2.3.0",
"react-router-dom": "^4.2.2",
"recompose": "^0.26.0",
"resolve-url-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-manifest-plugin": "^1.2.1",
"webpack-merge": "^4.1.0"
},
"devDependencies": {
"webpack-dev-server": "^2.6.1"
}
}