-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
58 lines (58 loc) · 2.09 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
{
"name": "micro-graphql-react",
"version": "0.4.0-rc.15",
"description": "",
"main": "dist/index.min.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/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@types/react": "^16.1.0",
"@vitejs/plugin-legacy": "^1.8.0",
"@vitejs/plugin-react": "^1.3.0",
"babel-jest": "^24.1.0",
"codecov": "^3.8.1",
"dotenv": "^8.2.0",
"dotenv-cli": "^4.0.0",
"jest": "^26.6.3",
"query-string": "^6.13.1",
"react": "0.0.0-experimental-94c0244ba",
"react-dom": "0.0.0-experimental-94c0244ba",
"react-testing-library": "^7.0.0",
"vite": "^2.9.1"
},
"scripts": {
"build": "vite build",
"build-all": "vite build && NO_MINIFY=true vite build",
"prepublishOnly": "npm run build-all",
"size-check": "npm run build && gzip dist/index.js && stat dist/index.js.gz && rm -f dist/index.js.gz",
"test": "jest --runInBand --bail --detectOpenHandles && codecov",
"test-local": "jest --runInBand",
"test-local-codecov": "jest --runInBand && dotenv codecov",
"testw": "jest --runInBand --watchAll",
"heroku-postbuild": "cd demo && npm i && npm run build && cd ../graphql-texas-slides && npm i && npm run build",
"clear-docs-folders": "rm -rf ./docs/demo && rm -rf ./docs/slides && mkdir ./docs/slides && mkdir ./docs/demo",
"build-all-docs": "cd demo && npm run build && cd ../graphql-texas-slides && npm run build && cd ..",
"update-docs": "npm run clear-docs-folders && npm run build-all-docs && cp -R ./demo/dist/. ./docs/demo && cp -R ./graphql-texas-slides/dist/. ./docs/slides"
},
"typings": "index.d.ts"
}