-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
97 lines (97 loc) · 3.27 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
{
"name": "react-base-ie8",
"version": "1.0.0",
"description": "this is react project.",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"dll": "cross-env NODE_ENV=development webpack --config webpack/webpack.dll.config.js",
"start": "cross-env NODE_ENV=development node server",
"start:dll": "npm run dll && npm run start",
"start:tunnel": "cross-env NODE_ENV=development ENABLE_TUNNEL=true node server",
"start:ie8": "cross-env NODE_ENV=production node server",
"copy": "node ./cli/copy",
"build:copy": "npm run copy && cross-env NODE_ENV=production webpack --config webpack/webpack.prod.config.js",
"build": "cross-env NODE_ENV=production webpack --config webpack/webpack.prod.config.js",
"prod": "npm run test && npm run build"
},
"author": "",
"license": "ISC",
"jest": {
"moduleDirectories": [
"node_modules",
"src"
]
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.5",
"fetch-ie8": "^1.5.0",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"react-router": "^2.3.0",
"styled-components": "^3.2.6"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-async-generators": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chalk": "^2.4.1",
"circular-dependency-plugin": "^5.0.2",
"clean-webpack-plugin": "^0.1.19",
"compression": "^1.7.2",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.5",
"css-hot-loader": "^1.3.9",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-14": "^1.0.5",
"es3ify-loader": "^0.2.0",
"eventsource-polyfill": "^0.9.6",
"exports-loader": "^0.7.0",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"fs-extra": "^6.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.18.0",
"image-webpack-loader": "^4.2.0",
"ip": "^1.1.5",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"json-loader": "^0.5.7",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.0",
"minimist": "^1.2.0",
"ngrok": "^3.0.1",
"optimize-css-assets-webpack-plugin": "^4.0.1",
"postcss-loader": "^2.1.5",
"progress-bar-webpack-plugin": "^1.11.0",
"prop-types": "^15.5.10",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"react-addons-test-utils": "^0.14.8",
"react-dev-utils": "^5.0.1",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.1",
"webpack-parallel-uglify-plugin": "^1.1.0"
}
}