-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "kanban-app",
"version": "0.1.0",
"description": "Example React with WebPack in ASP.NET MVC5",
"author": "Jon Smith",
"license": "MIT",
"scripts": {
"dev-build": "webpack -d --config webpack.config.js --colors",
"dev-watch": "webpack -d --config webpack.config.js --watch --colors",
"prod-build": "SET NODE_ENV=production&&webpack -p --config webpack.config.js --colors"
},
"dependencies": {
"flux": "2.1.1",
"history": "2.1.1",
"marked": "0.3.5",
"react": "15.0.2",
"react-dom": "15.0.2",
"react-router": "2.4.0",
"react-addons-css-transition-group": "15.0.2",
"react-addons-update": "15.0.2",
"react-dnd": "2.1.4",
"react-dnd-html5-backend": "2.1.2",
"whatwg-fetch": "1.0.0",
"babel-polyfill": "6.8.0"
},
"devDependencies": {
"babel-core": "6.8.0",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"webpack": "1.13.0",
"webpack-dev-server": "1.13.0",
"html-webpack-plugin": "2.16.0"
}
}