forked from apollographql/apollo-client-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·80 lines (80 loc) · 3.08 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
{
"name": "apollo-client-devtools",
"description": "Developer tools for Apollo Client, with GraphiQL integration, cache inspection, and query watching.",
"license": "MIT",
"version": "3.0.1",
"scripts": {
"install:client": "npm install --prefix development/client",
"install:server": "npm install --prefix development/server",
"install:dev": "run-p install:client install:server",
"start:client": "npm start --prefix development/client",
"start:server": "npm start --prefix development/server",
"start:dev": "run-p start:client start:server",
"build": "npm run clean && webpack --env NODE_ENV=development --progress",
"build:prod": "npm run clean && webpack --env NODE_ENV=production --progress",
"clean": "rimraf build && mkdir build && rimraf dist && mkdir dist",
"chrome": "npm run build -- --watch --env TARGET=chromium",
"firefox": "npm run build -- --watch",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepublishOnly": "npm run build",
"prezip": "npm run clean && npm run build:prod",
"test": "jest",
"test:circleci": "jest --maxWorkers=2",
"test:watch": "jest --watch",
"zip": "npm run prezip && npm run zip:chrome && npm run zip:firefox",
"zip:chrome": "zip -r -FS dist/chrome.zip build",
"zip:firefox": "web-ext build --source-dir build --artifacts-dir dist --overwrite-dest",
"postinstall": "cd node_modules/graphiql-forked/packages/graphiql && npm install --production"
},
"dependencies": {
"@apollo/client": "latest",
"@apollo/space-kit": "^9.0.1-canary.317.8374.0",
"@emotion/cache": "^11.1.3",
"@emotion/react": "^11.1.5",
"@reach/tabs": "^0.13.0",
"framer-motion": "^3.6.2",
"graphiql-explorer": "^0.6.2",
"graphiql-forked": "https://github.com/apollographql/graphiql",
"graphql": "^15.5.0",
"graphql-syntax-highlighter-react": "^0.4.0",
"polished": "^4.1.1",
"react": "^17.0.1",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.1",
"react-json-tree": "^0.15.0",
"stringify-object": "^3.3.0"
},
"devDependencies": {
"@emotion/jest": "11.2.1",
"@graphql-tools/mock": "8.1.1",
"@graphql-tools/schema": "7.1.3",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.5",
"@testing-library/user-event": "12.7.1",
"@types/chrome": "0.0.133",
"@types/jest": "26.0.20",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.1",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"copy-webpack-plugin": "7.0.0",
"css-loader": "5.1.2",
"eslint": "7.22.0",
"eslint-plugin-jest-dom": "3.6.5",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testing-library": "3.10.1",
"jest": "26.6.3",
"jest-matchmedia-mock": "1.1.0",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"style-loader": "2.0.0",
"terser-webpack-plugin": "5.1.1",
"ts-jest": "26.5.3",
"ts-loader": "8.0.18",
"typescript": "4.1.5",
"web-ext": "5.5.0",
"webpack": "5.25.1",
"webpack-cli": "4.5.0"
}
}