-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
83 lines (83 loc) · 2.81 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
{
"name": "webpack4-es6-react-typescript",
"version": "1.0.1",
"description": "",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"start": "webpack-dev-server --open --color --hot --mode development --inline --env.dev=development",
"build": " webpack --mode production --progress --profile --env.dev=production",
"dev": " webpack --progress --profile --mode development --env.dev=dev",
"watch": "jest --watchAll --cache -b --debug --errorOnDeprecated --expand",
"jest": "jest --cache -b --debug --errorOnDeprecated --expand",
"dll": " webpack --mode production --profile --inline --config webpack.dll.config.js ",
"reset": "jest -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NewPrototype/webpack4-es6-react-typescript.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/NewPrototype/webpack4-es6-react-typescript/issues"
},
"homepage": "https://github.com/NewPrototype/webpack4-es6-react-typescript#readme",
"dependencies": {
"@types/react": "^16.4.11",
"@types/react-dom": "^16.0.7",
"@types/react-loadable": "^5.4.1",
"@types/react-router-dom": "^4.3.0",
"@types/react-test-renderer": "^16.0.2",
"antd": "^3.8.2",
"axios": "^0.18.0",
"normalize.css": "^8.0.1",
"react": "16.8.0",
"react-dom": "16.8.0",
"react-loadable": "^5.5.0",
"react-router-dom": "^4.3.1",
"react-virtualized": "^9.21.0",
"webpack-bundle-analyzer": "^3.5.0"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/react-redux": "^6.0.12",
"autoprefixer": "^9.1.2",
"awesome-typescript-loader": "^5.2.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-import": "^1.7.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-require-ignore": "^0.1.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"happypack": "^5.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"import": "^0.0.6",
"jest": "^23.5.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.1",
"postcss-loader": "^3.0.0",
"react-redux": "^6.0.0",
"react-test-renderer": "^16.4.2",
"redux-saga": "^0.16.2",
"source-map-loader": "^0.2.3",
"style-loader": "^0.22.1",
"ts-import-plugin": "^1.5.4",
"ts-jest": "^23.1.4",
"ts-loader": "^4.5.0",
"typescript": "^3.0.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}