-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "redux-form-universal-example",
"version": "0.0.2",
"description": "Universal(isomorphic) example of redux-form validation",
"main": "index.js",
"scripts": {
"start": "npm run build-client && npm run serve",
"serve": "node --harmony ./index.js",
"build-client": "webpack",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikhail-riabokon/redux-form-universal-example.git"
},
"keywords": [
"redux-form",
"isomorphic",
"form-validation"
],
"author": "Mikhail Riabokon",
"license": "ISC",
"bugs": {
"url": "https://github.com/mikhail-riabokon/redux-form-universal-example/issues"
},
"homepage": "https://github.com/mikhail-riabokon/redux-form-universal-example#readme",
"dependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.24",
"babel-loader": "^5.3.2",
"body-parser": "^1.13.3",
"express": "^4.13.3",
"history": "^1.9.1",
"promise": "^7.0.4",
"react": "^0.13.3",
"react-redux": "^2.1.2",
"react-router": "^1.0.0-rc1",
"redux": "^3.0.0",
"redux-form": "^1.5.3",
"superagent": "^1.4.0",
"webpack": "^1.12.1"
}
}