forked from arackaf/micro-graphql-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.02 KB
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
{
"name": "micro-graphql-react",
"version": "0.4.0-beta21",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/arackaf/micro-graphql-react.git"
},
"author": "Adam Rackis",
"license": "MIT",
"bugs": {
"url": "https://github.com/arackaf/micro-graphql-react/issues"
},
"jest": {
"setupFiles": [
"./test/testSetup.js"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
},
"homepage": "https://github.com/arackaf/micro-graphql-react",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@types/react": "^16.1.0",
"babel-jest": "^24.1.0",
"codecov": "^3.0.2",
"del": "3.0.0",
"esm": "^3.2.25",
"express": "4.16.2",
"express-graphql": "0.6.11",
"graphql": "0.11.7",
"graphql-tools": "2.7.2",
"jest": "^24.8.0",
"mongo-graphql-starter": "^0.11.1",
"mongodb": "2.2.31",
"query-string": "^6.2.0",
"raf": "3.4.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-testing-library": "^7.0.0",
"rollup": "^1.3.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-terser": "^4.0.4",
"uglifyjs-webpack-plugin": "1.1.6",
"url-parse": "^1.4.0"
},
"scripts": {
"demo": "webpack -w",
"server": "node runServer",
"prepublishOnly": "npm run build",
"deploy": "npm run build && npm publish",
"build": "rollup -c",
"test": "jest --runInBand --bail --detectOpenHandles && codecov",
"test-local": "jest --runInBand",
"testw": "jest --runInBand --watchAll"
},
"dependencies": {},
"sideEffects": false,
"typings": "index.d.ts"
}