forked from josephjeganathan/react-redux-typescript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "react-ts-example",
"version": "0.1.0",
"description": "React, TypeScript, HMR, Webpack...",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "typings install",
"start": "node server.js"
},
"keywords": [
"react",
"typescript",
"typings",
"hmr",
"webpack",
"boilerplate"
],
"author": "Vincent Martinez <[email protected]>",
"license": "MIT",
"devDependencies": {
"axios": "^0.12.0",
"css-loader": "^0.23.1",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"node-sass": "^3.8.0",
"path": "^0.12.7",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-hot-loader": "^1.3.0",
"redux-thunk": "^2.1.0",
"sass-loader": "^4.0.0",
"socket.io-client": "^1.4.8",
"style-loader": "^0.13.1",
"ts-loader": "^0.8.2",
"tslint": "^3.12.1",
"tslint-loader": "^2.1.5",
"typescript": "^1.8.10",
"typings": "^1.3.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"bootstrap": "^3.3.6",
"react-redux": "^4.4.5",
"react-router": "^2.5.1",
"redux": "^3.5.2"
}
}