-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.65 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
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "my-boilerplate",
"version": "1.0.0",
"private": true,
"description": "My Boilerplate",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"start": "webpack-dev-server",
"start:demco": "better-npm-run start:demco",
"start:mcall": "better-npm-run start:mcall",
"start:mumu": "better-npm-run start:mumu",
"prod": "cross-env NODE_ENV=production webpack-dev-server --env.prod=true",
"build": "rimraf build && cross-env NODE_ENV=production webpack --env.prod=true --env.sw=true",
"serve": "pushstate-server build/ 3000",
"perf": "rimraf *.report.dom.html && npm run build && (npm run serve & lighthouse http://localhost:3000 --view)",
"lint": "eslint ./app -f table",
"lint:fix": "eslint ./app -f table --fix",
"dll": "webpack --config webpack.dll.js",
"postinstall": "rimraf .cache-loader & npm run dll"
},
"betterScripts": {
"start:demco": {
"command": "webpack-dev-server",
"env": {
"TENANT": "demco"
}
},
"start:mcall": {
"command": "webpack-dev-server",
"env": {
"TENANT": "mcall"
}
},
"start:mumu": {
"command": "webpack-dev-server",
"env": {
"TENANT": "mumu"
}
}
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.54",
"autoprefixer": "^9.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0-beta.3",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-dynamic-import-node": "^2.0.0",
"babel-plugin-syntax-dynamic-import": "^7.0.0-beta.3",
"babel-plugin-transform-class-properties": "^7.0.0-beta.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3",
"babel-plugin-transform-runtime": "^7.0.0-beta.3",
"babel-preset-env": "^7.0.0-beta.3",
"babel-preset-react": "^7.0.0-beta.3",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"css-loader": "^0.28.7",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^4.0.0-alpha",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.4.1",
"lighthouse": "^3.0.3",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"prettier": "^1.13.7",
"progress-bar-webpack-plugin": "^1.11.0",
"pushstate-server": "3.0.1",
"react-test-renderer": "^16.4.1",
"redux-mock-store": "^1.2.3",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.3",
"script-ext-html-webpack-plugin": "^2.0.1",
"style-loader": "^0.21.0",
"sw-precache-webpack-plugin": "^0.11.4",
"thread-loader": "^1.1.1",
"uglify-js": "^3.4.5",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.54",
"babel-runtime": "^7.0.0-beta.3",
"better-npm-run": "^0.1.1",
"cache-loader": "^1.0.3",
"classnames": "^2.2.6",
"d3": "^5.5.0",
"prop-types": "^15.5.10",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.3.3",
"react-redux": "^5.1.0-test.1",
"react-router": "^4.4.0-alpha.1",
"react-router-dom": "^4.4.0-alpha.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0-beta.1"
}
}