-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.53 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.53 KB
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
{
"name": "webpack",
"version": "0.0.1",
"description": "this is a cute&awesome webpack template.",
"homepage": "https://reysun.github.io/webpack-typescript-react/",
"main": "",
"scripts": {
"start": "webpack-dev-server --config=webpack/webpack.config.dev.js --progress",
"build:pwa": "webpack --config=webpack/webpack.config.prod.js --progress",
"build:server": "webpack --config=webpack/webpack.config.server.js --progress",
"server": "cross-env NODE_ENV=production NODE=TRUE ts-node --project server server/server.tsx",
"local": "http-server ./build -p 9087"
},
"keywords": [
"webpack",
"react",
"redux",
"react-redux",
"react-router",
"todomvc",
"PWA"
],
"author": "ReySun <reysun_sky@outlook.com>",
"license": "MIT",
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"todomvc-app-css": "^2.1.0"
},
"devDependencies": {
"@types/express": "^4.11.0",
"@types/react": "^16.0.34",
"@types/react-dom": "^16.0.3",
"@types/react-redux": "^5.0.14",
"@types/react-router-dom": "^4.2.3",
"@types/redux": "^3.6.31",
"@types/redux-devtools": "^3.0.42",
"@types/redux-devtools-dock-monitor": "^1.1.31",
"@types/redux-devtools-log-monitor": "^1.0.32",
"@types/redux-logger": "^3.0.5",
"babel-minify-webpack-plugin": "^0.2.0",
"babili-webpack-plugin": "^0.1.2",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.3.1",
"cross-env": "^5.1.3",
"css-loader": "^0.28.8",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"http-server": "^0.11.1",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"node-sass": "^4.7.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"redux-devtools": "^3.4.1",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0",
"redux-logger": "^3.0.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"sw-precache-webpack-plugin": "^0.11.4",
"ts-loader": "^3.2.0",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-loader": "^3.5.3",
"typescript": "^2.6.2",
"webpack": "^3.10.0",
"webpack-merge": "^4.1.1"
}
}