-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "kanban_app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"test": "karma start",
"tdd": "karma start --auto-watch --no-single-run",
"build": "webpack",
"stats": "webpack --profile --json > stats.json"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^5.8.34",
"babel-loader": "^5.4.0",
"babel-plugin-react-transform": "^1.1.1",
"clean-webpack-plugin": "^0.1.5",
"css-loader": "^0.23.0",
"extract-text-webpack-plugin": "^0.9.1",
"html-webpack-plugin": "^1.7.0",
"isparta-instrumenter-loader": "^0.2.1",
"karma": "^0.13.15",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.2.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "^0.3.6",
"karma-spec-reporter": "0.0.23",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.4",
"phantomjs": "^1.9.19",
"phantomjs-polyfill": "0.0.1",
"react-addons-test-utils": "^0.14.3",
"react-dnd-test-backend": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"style-loader": "^0.13.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0",
"webpack-merge": "^0.3.2"
},
"dependencies": {
"alt": "^0.17.9",
"alt-container": "^1.0.0",
"node-uuid": "^1.4.7",
"react": "^0.14.3",
"react-dnd": "^2.0.2",
"react-dnd-html5-backend": "^2.0.0",
"react-dom": "^0.14.3"
}
}