-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "redux-form-tests",
"version": "0.0.1",
"description": "Showing some unit and integration tests for redux-form",
"keywords": [],
"scripts": {
"dev": "node_modules/.bin/webpack-dev-server",
"test": "node_modules/.bin/mocha -w --compilers js:babel-core/register tests/setup.js tests/*"
},
"devDependencies": {
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.4.2",
"enzyme": "^2.3.0",
"jsdom": "^9.1.0",
"mocha": "^3.0.2",
"react-addons-test-utils": "^15.0.2",
"sinon": "^1.17.4",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.15.1"
},
"dependencies": {
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-hot-loader": "^3.0.0-beta.3",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-form": "^6.0.2",
"redux-thunk": "^2.1.0"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/tylercollier/redux-form-test"
},
"author": "tylercollier",
"license": "MIT"
}