-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 971 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 971 Bytes
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
{
"name": "kanban-app",
"version": "0.1.0",
"description": "Pro React sample kanban app project",
"author": "Cássio Zen",
"license": "MIT",
"scripts": {
"start": "node_modules/.bin/webpack-dev-server --progress",
"build": "NODE_ENV=production node_modules/.bin/webpack -p --progress --colors"
},
"devDependencies": {
"babel-core": "~6.7.*",
"babel-loader": "~6.2.*",
"babel-preset-es2015": "~6.6.*",
"babel-preset-react": "~6.5.*",
"webpack": "~1.12.*",
"webpack-dev-server": "~1.14.*"
},
"dependencies": {
"babel-polyfill": "~6.7.*",
"flux": "^2.1.1",
"history": "^1.13.0",
"marked": "^0.3.5",
"react": "^15.0.0",
"react-addons-css-transition-group": "^15.0.0",
"react-addons-update": "^15.0.0",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.0.0",
"react-history": "^1.0.0",
"react-router": "^1.0.3",
"whatwg-fetch": "^0.11.0"
}
}