forked from Fundflow/apollo-redux-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.51 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@fundflow/apollo-redux-form",
"version": "1.1.3",
"description": "redux-form powered by apollo",
"main": "./lib/src/index.js",
"typings": "./lib/src/index.d.ts",
"types": "./lib/src/index.d.ts",
"keywords": [
"graphql",
"apollo",
"redux-form"
],
"repository": {
"type": "git",
"url": "https://github.com/Fundflow/apollo-redux-form"
},
"scripts": {
"deploy": "./scripts/deploy.sh",
"compile": "tsc",
"watch": "tsc -w",
"pretest": "npm run compile",
"test": "mocha --reporter spec --full-trace lib/test/tests.js",
"posttest": "npm run lint",
"lint": "tslint 'src/*.ts*' && tslint 'test/*.ts*'",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "./scripts/deploy-storybook.sh"
},
"author": "FundFlow Gmbh",
"license": "MIT",
"dependencies": {
"deepmerge": "^1.5.1",
"invariant": "^2.2.2",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"redux-form": "^7.0.3"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"@types/async": "^2.0.31",
"@types/chai": "^4.0.3",
"@types/chai-as-promised": "0.0.31",
"@types/deepmerge": "^1.3.1",
"@types/enzyme": "^2.8.6",
"@types/graphql": "^0.10.2",
"@types/mocha": "^2.2.41",
"@types/promises-a-plus": "0.0.27",
"@types/react-redux": "^5.0.4",
"@types/redux-form": "^7.0.2",
"@types/sinon": "^2.3.3",
"antd": "^2.13.4",
"apollo-client": "^1.9.1",
"apollo-test-utils": "^0.3.2",
"chai": "^4.1.1",
"concurrently": "^3.5.0",
"css": "^2.2.1",
"css-loader": "^0.28.5",
"enzyme": "^2.9.1",
"es6-promise": "^4.1.1",
"graphql-tag": "^2.4.2",
"jsdom": "^11.1.0",
"mocha": "^3.5.0",
"moment": "^2.18.1",
"node-sass": "^4.5.3",
"path": "^0.12.7",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.0",
"react-apollo": "^1.4.14",
"react-css-modules": "^4.7.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"sass": "^1.0.0-beta.2",
"sass-loader": "^6.0.6",
"sinon": "^3.2.0",
"source-map-support": "^0.4.16",
"style": "0.0.3",
"style-loader": "^0.18.2",
"tslint": "^5.6.0",
"typescript": "^2.4.2",
"webpack": "^3.5.5"
},
"optionalDependencies": {
"@types/node": "^8.0.23"
},
"peerDependencies": {
"@types/react": "^16.0.2",
"graphql": "^0.10.5",
"react": "^15.6.1",
"react-apollo": "^1.4.14",
"react-redux": "^5.0.3"
}
}