-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.36 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
{
"name": "graphql-automock",
"version": "0.5.0",
"description": "Automock GraphQL schemas for better testing",
"main": "dist/index.js",
"author": "David Tang <tang.ddt@gmail.com>",
"license": "MIT",
"keywords": [
"graphql",
"schema",
"mock",
"test",
"apollo"
],
"repository": {
"type": "git",
"url": "https://github.com/dvtng/graphql-automock"
},
"scripts": {
"analyze": "ANALYZE_BUILD=true yarn build && open dist/stats.html",
"build": "NODE_ENV=production webpack",
"prepublishOnly": "yarn build",
"test": "jest"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.test.js"
]
},
"dependencies": {
"apollo-cache-inmemory": "^1.2.5",
"apollo-client": "^2.3.5",
"apollo-link": "^1.2.2",
"graphql": "^0.13.2",
"graphql-tools": "^3.0.1",
"react": "^16.4.1",
"react-apollo": "^2.1.9",
"react-dom": "^16.4.1",
"rxjs": "^6.2.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"graphql-tag": "^2.9.2",
"jest": "^23.4.1",
"react-test-renderer": "^16.4.1",
"webpack": "^4.8.3",
"webpack-cli": "^3.0.8",
"webpack-visualizer-plugin": "^0.1.11"
}
}