-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
70 lines (70 loc) · 1.89 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
{
"name": "react-apollo-form",
"version": "0.1.8",
"main": "dist/index.js",
"bin": {
"react-apollo-form": "./dist/lib/cli.js"
},
"repository": "[email protected]:wittydeveloper/react-apollo-form.git",
"author": "Charly POLY <[email protected]>",
"license": "MIT",
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook",
"test": "jest"
},
"dependencies": {
"apollo-client": "^2.3.1",
"apollo-codegen": "^0.19.1",
"graphql-2-json-schema": "0.1.0-1",
"json-schema": "^0.2.3",
"lodash": "^4.17.10",
"react": "^16.4.0",
"react-apollo": "^2.1.4",
"react-dom": "^16.4.0",
"react-jsonschema-form": "^1.0.3",
"yargs": "^11.0.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.6",
"@storybook/addon-console": "^1.0.0",
"@storybook/addon-knobs": "^3.4.6",
"@storybook/react": "4.0.0-alpha.8",
"@types/apollo-codegen": "^0.16.0",
"@types/graphql": "^0.13.1",
"@types/jest": "^23.0.0",
"@types/json-schema": "^6.0.1",
"@types/lodash": "^4.14.109",
"@types/node": "^10.1.4",
"@types/react-jsonschema-form": "^1.0.4",
"@types/storybook__react": "^3.0.7",
"@types/yargs": "^11.0.0",
"apollo-cache-inmemory": "^1.2.2",
"apollo-storybook-react": "^0.1.3",
"awesome-typescript-loader": "^5.0.0",
"babel-core": "^6.26.3",
"css-loader": "^0.28.11",
"functional-json-schema": "0.0.2-3",
"graphql-tag": "^2.9.2",
"graphql-tools": "^3.0.2",
"jest": "^23.1.0",
"semantic-ui-react": "^0.80.2",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"tslint-react": "^3.6.0",
"typescript": "^2.9.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/([^\\.d]*)|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}