-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 3.1 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
{
"name": "chrome-extension-boilerplate-react-vite",
"version": "0.0.3",
"description": "chrome extension boilerplate",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Jonghakseo/chrome-extension-boilerplate-react-vite.git"
},
"scripts": {
"build": "rm -rf release && tsc --noEmit && vite build && mkdir release && cp -r dist/* release/" ,
"dev": "pnpm build:hmr && (run-p wss build:watch)",
"build:firefox": "tsc --noEmit && cross-env __FIREFOX__=true vite build",
"build:watch": "cross-env __DEV__=true vite build -w --mode development",
"build:firefox:watch": "cross-env __DEV__=true __FIREFOX__=true vite build -w --mode development",
"build:hmr": "rollup --config utils/reload/rollup.config.mjs",
"wss": "node utils/reload/initReloadServer.js",
"dev:firefox": "pnpm build:hmr && (run-p wss build:firefox:watch)",
"test": "vitest",
"commitlint": "commitlint --edit",
"lint": "eslint src --ext .ts,.js,.tsx,.jsx",
"lint:fix": "pnpm lint --fix",
"prettier": "prettier . --write",
"prepare": "husky install",
"i": "pnpm dlx pnpm@8.15.4 install"
},
"type": "module",
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"classnames": "^2.5.1",
"construct-style-sheets-polyfill": "3.1.0",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.10",
"framer-motion": "^11.0.3",
"immer": "^10.0.3",
"lodash": "^4.17.21",
"octokit": "^3.1.2",
"react": "18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.50.1",
"webextension-polyfill": "0.10.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@commitlint/cli": "18.4.4",
"@commitlint/config-conventional": "18.1.0",
"@iconify-icon/react": "^1.0.8",
"@rollup/plugin-typescript": "11.1.5",
"@testing-library/react": "14.0.0",
"@types/chrome": "0.0.251",
"@types/lodash": "^4.14.202",
"@types/node": "20.8.10",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.18",
"@types/ws": "8.5.8",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.18.1",
"@vitejs/plugin-react": "4.2.0",
"autoprefixer": "^10.4.17",
"chokidar": "3.5.3",
"cross-env": "7.0.3",
"eslint": "8.56.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"fs-extra": "11.1.1",
"husky": "8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "15.2.0",
"npm-run-all": "4.1.5",
"postcss": "^8.4.35",
"prettier": "3.1.0",
"rollup": "4.3.0",
"sass": "1.69.5",
"tailwindcss": "^3.4.1",
"ts-loader": "9.5.0",
"tslib": "2.6.2",
"typescript": "5.2.2",
"vite": "5.0.11",
"vitest": "^0.34.6",
"ws": "8.14.2"
},
"packageManager": "pnpm@8.9.2"
}