|
1 | 1 | {
|
2 |
| - "name": "react-code-finder", |
3 |
| - "version": "1.0.6", |
4 |
| - "description": "react code finder for develop mode", |
| 2 | + "name": "chrome-extension-boilerplate-react-vite", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "chrome extension boilerplate", |
5 | 5 | "license": "MIT",
|
6 | 6 | "repository": {
|
7 | 7 | "type": "git",
|
8 | 8 | "url": "https://github.com/Jonghakseo/chrome-extension-boilerplate-react-vite.git"
|
9 | 9 | },
|
10 | 10 | "scripts": {
|
11 |
| - "build": "tsc --noEmit && vite build", |
12 |
| - "build:firefox": "tsc --noEmit && cross-env __FIREFOX__=true vite build", |
13 |
| - "build:watch": "cross-env __DEV__=true vite build -w --mode development", |
14 |
| - "build:firefox:watch": "cross-env __DEV__=true __FIREFOX__=true vite build -w --mode development", |
15 |
| - "build:hmr": "rollup --config utils/reload/rollup.config.mjs", |
16 |
| - "wss": "node utils/reload/initReloadServer.js", |
17 |
| - "dev": "pnpm build:hmr && (run-p wss build:watch)", |
18 |
| - "dev:firefox": "pnpm build:hmr && (run-p wss build:firefox:watch)", |
19 |
| - "test": "vitest", |
20 |
| - "lint": "eslint src --ext .ts,.js,.tsx,.jsx", |
21 |
| - "lint:fix": "pnpm lint --fix", |
22 |
| - "prettier": "prettier . --write" |
| 11 | + "clean": "rimraf dist && rimraf .turbo && turbo clean", |
| 12 | + "build": "turbo build", |
| 13 | + "build:firefox": "cross-env __FIREFOX__=true turbo build", |
| 14 | + "dev-server": "pnpm -F hmr build && pnpm -F hmr dev-server", |
| 15 | + "dev": "cross-env __DEV__=true turbo dev --concurrency 20", |
| 16 | + "dev:firefox": "cross-env __DEV__=true __FIREFOX__=true turbo dev --concurrency 20", |
| 17 | + "test": "turbo test", |
| 18 | + "type-check": "turbo type-check", |
| 19 | + "lint": "turbo lint", |
| 20 | + "lint:fix": "turbo lint:fix", |
| 21 | + "prettier": "turbo prettier" |
23 | 22 | },
|
24 | 23 | "type": "module",
|
25 | 24 | "dependencies": {
|
26 |
| - "@chakra-ui/icons": "^2.1.1", |
27 |
| - "@chakra-ui/react": "^2.8.2", |
28 |
| - "@emotion/cache": "^11.11.0", |
29 |
| - "@emotion/react": "^11.11.3", |
30 |
| - "construct-style-sheets-polyfill": "3.1.0", |
31 |
| - "monaco-editor": "^0.46.0", |
32 | 25 | "react": "18.2.0",
|
33 |
| - "react-dom": "18.2.0", |
34 |
| - "webextension-polyfill": "0.10.0" |
| 26 | + "react-dom": "18.2.0" |
35 | 27 | },
|
36 | 28 | "devDependencies": {
|
37 |
| - "@rollup/plugin-sucrase": "5.0.2", |
38 |
| - "@rollup/plugin-typescript": "11.1.5", |
39 |
| - "@testing-library/react": "14.0.0", |
40 |
| - "@types/chrome": "0.0.251", |
41 |
| - "@types/node": "20.8.10", |
42 |
| - "@types/react": "18.2.37", |
43 |
| - "@types/react-dom": "18.2.18", |
44 |
| - "@types/ws": "8.5.8", |
45 |
| - "@typescript-eslint/eslint-plugin": "6.10.0", |
46 |
| - "@typescript-eslint/parser": "6.18.1", |
47 |
| - "@vitejs/plugin-react": "4.2.0", |
48 |
| - "chokidar": "3.5.3", |
49 |
| - "cross-env": "7.0.3", |
| 29 | + "@types/chrome": "^0.0.268", |
| 30 | + "@types/node": "^20.12.11", |
| 31 | + "@types/react": "^18.3.2", |
| 32 | + "@types/react-dom": "^18.3.0", |
| 33 | + "@typescript-eslint/eslint-plugin": "^6.21.0", |
| 34 | + "@typescript-eslint/parser": "^6.21.0", |
| 35 | + "@vitejs/plugin-react-swc": "^3.6.0", |
| 36 | + "autoprefixer": "^10.4.19", |
| 37 | + "cross-env": "^7.0.3", |
50 | 38 | "eslint": "8.56.0",
|
51 | 39 | "eslint-config-airbnb-typescript": "17.1.0",
|
52 | 40 | "eslint-config-prettier": "9.0.0",
|
53 |
| - "eslint-plugin-import": "2.29.0", |
| 41 | + "eslint-plugin-import": "2.29.1", |
54 | 42 | "eslint-plugin-jsx-a11y": "6.8.0",
|
55 |
| - "eslint-plugin-prettier": "5.0.1", |
| 43 | + "eslint-plugin-prettier": "5.1.3", |
56 | 44 | "eslint-plugin-react": "7.33.2",
|
57 | 45 | "eslint-plugin-react-hooks": "4.6.0",
|
58 |
| - "fs-extra": "11.1.1", |
59 |
| - "jsdom": "^22.1.0", |
60 |
| - "npm-run-all": "4.1.5", |
61 |
| - "prettier": "3.1.0", |
62 |
| - "rollup": "4.3.0", |
63 |
| - "sass": "1.69.5", |
64 |
| - "ts-loader": "9.5.0", |
65 |
| - "tslib": "2.6.2", |
| 46 | + "postcss": "^8.4.38", |
| 47 | + "prettier": "^3.2.5", |
| 48 | + "rimraf": "^5.0.6", |
| 49 | + "tailwindcss": "^3.4.3", |
| 50 | + "tslib": "^2.6.2", |
| 51 | + "turbo": "^1.13.3", |
66 | 52 | "typescript": "5.2.2",
|
67 |
| - "vite": "5.0.11", |
68 |
| - "vitest": "^0.34.6", |
69 |
| - "ws": "8.14.2" |
| 53 | + "vite": "^5.2.11" |
70 | 54 | },
|
71 |
| - "packageManager": "[email protected]" |
| 55 | + "packageManager": "[email protected]", |
| 56 | + "engines": { |
| 57 | + "node": ">=18.12.0" |
| 58 | + } |
72 | 59 | }
|
0 commit comments