-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 3.99 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "apollo-inspector-ui",
"version": "0.0.13",
"source": "index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"targets": {
"main": {
"includeNodeModules": true
}
},
"scripts": {
"build:extension:dev": "rimraf build && webpack --config extension/webpack.config.ts --env NODE_ENV=development --progress --watch",
"build:extension": "rimraf .parcel-cache && rimraf build && webpack --config extension/webpack.config.ts --env NODE_ENV=production --progress ",
"build:package": "rimraf .parcel-cache && rimraf dist && parcel build && node scripts/build.js",
"build:site": "tsc && vite build",
"dev": "vite",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"parcel:start": "parcel index.html",
"parcel:test:nocache:start": "rimraf .parcel-cache && parcel src/__test__/index.html",
"parcel:test:start": "parcel src/__test__/index.html",
"preview": "vite preview",
"publish:package": "yarn build:package && npm publish",
"test:build": "webpack --config src/__test__/test-app/webpack/webpack.config.js --env env=prod",
"test:start": "webpack serve --config webpack/webpack.config.js --env env=dev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jpsahoo14/apollo-inspector-ui.git"
},
"dependencies": {
"@datastructures-js/queue": "^4.2.3",
"@fluentui-contrib/react-data-grid-react-window": "^1.1.2",
"@fluentui/react-list-preview": "^0.2.0",
"apollo-inspector": "1.17.10",
"copy-to-clipboard": "^3.3.3",
"event-target-shim": "^6.0.2",
"graphql": "16.8.1",
"immer": "^10.0.1",
"lodash-es": "^4.17.21",
"rxjs": "^7.8.1",
"view-json-react": "^1.1.1",
"webextension-polyfill": "^0.10.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@apollo/client": "3.6.5",
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@faker-js/faker": "^8.0.2",
"@fluentui/react-components": "^9.18.9",
"@fluentui/react-data-grid-react-window": "^9.0.0-beta.40",
"@fluentui/react-icons": "^2.0.196",
"@parcel/packager-ts": "2.10.3",
"@parcel/transformer-typescript-types": "2.10.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.4",
"@types/chrome": "^0.0.254",
"@types/lodash-es": "^4.17.9",
"@types/node": "^20.10.5",
"@types/react-dom": "^18.2.8",
"@types/react": "^18.2.23",
"@types/webextension-polyfill": "^0.10.7",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vitejs/plugin-react-swc": "^3.0.0",
"apollo-inspector": "1.17.10",
"babel-loader": "^9.1.3",
"chrome-types": "^0.1.246",
"copy-webpack-plugin": "^11.0.0",
"esbuild-node-externals": "^1.9.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react": "^7.33.2",
"eslint": "^8.55.0",
"graphql-tools": "^9.0.0",
"parcel": "^2.9.3",
"prettier": "^3.1.1",
"process": "^0.11.10",
"react-dom": "^18.2.0",
"react": "^18.2.0",
"rimraf": "^5.0.5",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup": "^3.29.4",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"webpack-cli": "^5.1.4",
"webpack": "^5.89.0"
},
"peerDependencies": {
"@fluentui/react-components": ">=9.0.0",
"@fluentui/react-data-grid-react-window": "^9.0.0-beta.21",
"@fluentui/react-icons": ">=^2.0.196",
"@types/react-dom": ">=16.14.0 <19.0.0",
"@types/react": ">=16.14.0 <19.0.0",
"apollo-inspector": "1.17.10",
"react-dom": ">=16.14.0 <19.0.0",
"react": ">=16.14.0 <19.0.0",
"scheduler": "^0.19.0 || ^0.20.0",
"use-sync-external-store": "1.2.0"
}
}