-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.51 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
{
"name": "local-storage-inspector",
"private": true,
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && node ./scripts/set-manifest-version.js",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"bundle": "yarn bundle:chrome && yarn bundle:firefox",
"bundle:chrome": "yarn build && node ./scripts/set-chrome-settings.js && bestzip build-chrome.zip dist/*",
"bundle:firefox": "yarn build && node ./scripts/set-firefox-settings.js && cd dist && bestzip ../build-firefox.zip *"
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@codemirror/lang-json": "^6.0.1",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@heroicons/react": "^2.1.4",
"codemirror": "^6.0.1",
"eventemitter3": "^5.0.1",
"framer-motion": "^11.2.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-split-pane": "^0.1.92",
"react-table": "^7.8.0"
},
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/react-table": "^7",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"bestzip": "^2.2.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"typescript": "^5.2.2",
"utility-types": "^3.11.0",
"vite": "^5.2.0"
},
"packageManager": "yarn@4.3.0"
}