-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.59 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
{
"name": "boilerplate-application",
"version": "1.0.0",
"description": "This is a React single-page-application that can be used as a boilerplate for all standalone sites",
"author": "Brendan Eggers",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:repos/webdev/webprod-templates.git"
},
"dependencies": {
"express": "^4.17.1",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.15",
"modernizr": "^3.7.1",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-ga": "^2.7.0",
"react-graceful-unmount": "^1.0.7",
"react-loadable": "^5.5.0",
"react-onclickoutside": "^6.9.0",
"react-redux": "^7.1.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"scriptjs": "^2.5.9",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"webpack-browser-plugin": "^1.0.20",
"webpack-merge": "^4.2.2",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-minify": "^0.5.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"cli-color": "^2.0.0",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"del": "^5.1.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"gulp": "^4.0.2",
"gulp-awspublish": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-bump": "^3.1.3",
"gulp-git": "^2.9.0",
"gulp-if": "^3.0.0",
"gulp-prompt": "^1.2.0",
"gulp-rename": "^1.4.0",
"http": "0.0.1-security",
"json-loader": "^0.5.7",
"modernizr-loader": "^1.0.1",
"node-sass": "^4.12.0",
"path": "^0.12.7",
"react-hot-loader": "^4.12.15",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"webpack-cli": "^3.3.9"
},
"scripts": {
"install": "npm run install-webpack-dev-server",
"install-webpack-dev-server": "npm install -g webpack webpack-dev-server",
"build": "webpack --config webpack.prod.js",
"prepublish": "npm run build",
"publish": "gulp publish && gulp git",
"sync": "gulp sync",
"push": "npm run publish",
"start": "webpack-dev-server --open --config webpack.common.js"
}
}