-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.93 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
{
"name": "generic-web",
"version": "1.0.0",
"description": "Generic web server setup, intended to be used for React applications",
"main": "src/index.html",
"scripts": {
"start": "node server.js",
"build": "rimraf build && webpack --progress -p --config webpack.prod.config.js",
"test": ""
},
"author": "Albert Kim",
"license": "ISC",
"dependencies": {
"@types/core-js": "^0.9.34",
"@types/express": "^4.0.33",
"@types/history": "^2.0.37",
"@types/jquery": "^2.0.32",
"@types/react": "^0.14.37",
"@types/react-dom": "^0.14.17",
"@types/react-redux": "^4.4.32",
"@types/react-router": "^2.0.36",
"@types/react-router-redux": "^4.0.33",
"@types/redux-actions": "^0.8.30",
"@types/redux-promise": "^0.5.23",
"@types/redux-thunk": "^2.1.31",
"axios": "^0.14.0",
"bootstrap": "^3.3.6",
"bootstrap-loader": "^2.0.0-beta.3",
"bootstrap-sass": "^3.3.7",
"core-js": "^2.4.1",
"css-loader": "^0.23.0",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"font-awesome": "^4.4.0",
"history": "^3.0.0",
"jquery": "^3.1.0",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"node-sass": "^3.8.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.6",
"redux": "^3.6.0",
"redux-actions": "^0.12.0",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.1.0",
"resolve-url-loader": "^1.6.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.0",
"typescript": "^2.0.3",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.0"
},
"devDependencies": {
"awesome-typescript-loader": "^2.2.4",
"html-webpack-plugin": "^2.22.0",
"source-map-loader": "^0.1.5",
"ts-loader": "^0.8.2",
"tslint": "^3.15.1",
"tslint-react": "^1.0.0",
"rimraf": "^2.5.4"
}
}