-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
34 lines (34 loc) · 897 Bytes
/
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
{
"name": "todo",
"version": "0.0.1",
"description": "Todo",
"scripts": {
"build": "./node_modules/webpack/bin/webpack.js",
"pretest": "webpack --config webpack_spec.config.js",
"start": "node server.js",
"test": "./node_modules/jasmine/bin/jasmine.js"
},
"repository": {
"type": "git",
"url": "https://github.com/urbanvikingr/todo.git"
},
"dependencies": {
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-redux": "^4.0.0",
"redux": "^3.0.4"
},
"devDependencies": {
"babel-core": "^5.8.22",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"express": "^4.13.3",
"jasmine": "^2.4.1",
"jasmine-ajax": "^3.2.0",
"react-hot-loader": "^1.2.8",
"react-transform-hmr": "^1.0.1",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
}
}