-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.69 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
{
"name": "starter_kit_react_web",
"version": "0.0.1",
"description": "Mon starter kit pour développement web react, typescript, webpack",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --config build/webpack.web.config.js",
"publish": "better-npm-run publish:production"
},
"betterScripts": {
"publish:production": {
"command": "webpack --config build/webpack.web.config.js",
"env": {
"NODE_ENV": "production"
}
}
},
"author": "David Violet",
"license": "ISC",
"devDependencies": {
"better-npm-run": "0.1.0",
"css-loader": "0.28.8",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.6",
"html-webpack-plugin": "2.30.1",
"node-sass": "4.7.2",
"raw-loader": "0.5.1",
"sass-loader": "6.0.6",
"style-loader": "0.19.1",
"ts-loader": "3.2.0",
"typescript": "2.6.2",
"url-loader": "0.6.2",
"webpack": "3.10.0",
"webpack-dev-server": "2.11.0"
},
"dependencies": {
"@types/object-assign": "4.0.30",
"@types/react": "16.0.34",
"@types/react-dom": "16.0.3",
"@types/redux": "3.6.0",
"@types/react-redux":"5.0.14",
"@types/redux-thunk": "2.1.0",
"@types/react-router":"4.0.20",
"@types/react-router-dom":"4.2.3",
"@types/history": "4.6.2",
"@types/moment":"2.13.0",
"object-assign": "4.1.1",
"react": "16.2.0",
"react-dom": "16.2.0",
"redux": "3.7.2",
"react-redux":"5.0.6",
"redux-thunk": "2.2.0",
"react-router": "4.2.0",
"react-router-dom": "4.2.2",
"history":"4.7.2",
"moment":"2.20.1",
"font-awesome": "4.7.0",
"animate.css": "3.5.2"
}
}