-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.39 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "cheeseburgervacation-react",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "yarn dev",
"dev": "webpack-dev-server --config config/webpack-dev.config.js --mode development --open --hot",
"build:prepare": "rm -rf ./dist && mkdir dist",
"build:make": "webpack --config config/webpack-prod.config.js --mode production --env.NODE_ENV=production",
"build": "yarn build:prepare && yarn build:make",
"bundle:profile:prepare": "rm -rf ./webpack-stats && mkdir webpack-stats",
"bundle:profile": "webpack --profile --json --config config/webpack-prod.config.js --mode production --env.NODE_ENV=production > webpack-stats/stats.json",
"bundle:analyze": "webpack-bundle-analyzer webpack-stats/stats.json",
"analyze": "yarn bundle:profile:prepare && yarn bundle:profile && yarn bundle:analyze",
"lint": "eslint ./src/",
"sass-lint": "sass-lint 'src/assets/styles/**/*.scss' -v",
"sass-lint-fix": "sass-lint-auto-fix -c .sass-lint-fix.yml"
},
"author": {
"email": "bwl@cheeseburgervacation.com",
"name": "bwl",
"url": "http://cheeseburgervacation.com"
},
"dependencies": {
"@babel/polyfill": "^7.4.3",
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-brands-svg-icons": "^5.8.1",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"autoprefixer": "^9.5.1",
"axios": "^0.19.2",
"babel-plugin-styled-components": "^1.10.0",
"classnames": "^2.2.6",
"history": "^4.9.0",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"qs": "^6.7.0",
"query-string": "^6.4.2",
"react": "^16.8.6",
"react-animations": "^1.0.0",
"react-device-detect": "^1.6.2",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"react-plx": "^1.3.13",
"react-render-html": "^0.6.0",
"react-responsive": "^8.0.3",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"react-slick": "^0.25.2",
"react-spinkit": "^3.0.0",
"rebass": "^4.0.7",
"serve": "^11.0.0",
"styled-components": "^5.0.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-parse": "^1.4.6",
"uuid": "^7.0.2",
"whatwg-fetch": "~3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-transform-async-to-generator": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.0.1",
"husky": "^4.2.3",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"redux-logger": "^3.0.6",
"sass-lint": "^1.12.1",
"sass-lint-auto-fix": "^0.21.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
},
"engines": {
"node": ">=4.8.1",
"npm": ">=2.15.11"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}