-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 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
{
"name": "chrome-extension-boilerplate-react-vite",
"version": "0.3.2",
"description": "chrome extension boilerplate",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Jonghakseo/chrome-extension-boilerplate-react-vite.git"
},
"type": "module",
"scripts": {
"clean:bundle": "rimraf dist && rimraf dist-zip && turbo clean:bundle",
"clean:node_modules": "turbo daemon stop && pnpx rimraf node_modules && pnpx turbo clean:node_modules",
"clean:turbo": "turbo daemon stop && rimraf .turbo && turbo clean:turbo",
"clean": "pnpm clean:bundle && pnpm clean:turbo && pnpm clean:node_modules",
"clean:install": "pnpm clean:node_modules && pnpm install --frozen-lockfile",
"build": "pnpm clean:bundle && turbo ready && turbo build",
"build:firefox": "pnpm clean:bundle && turbo ready && cross-env __FIREFOX__=true turbo build",
"zip": "pnpm build && pnpm -F zipper zip",
"zip:firefox": "pnpm build:firefox && cross-env __FIREFOX__=true pnpm -F zipper zip",
"dev": "turbo ready && cross-env __DEV__=true turbo watch dev --concurrency 20",
"dev:firefox": "turbo ready && cross-env __DEV__=true __FIREFOX__=true turbo watch dev --concurrency 20",
"e2e": "pnpm build && pnpm zip && turbo e2e",
"e2e:firefox": "pnpm build:firefox && pnpm zip:firefox && cross-env __FIREFOX__=true turbo e2e",
"type-check": "turbo type-check",
"lint": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo lint:fix --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"prettier": "turbo prettier --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"prepare": "husky",
"update-version:win32": "bash update_version.sh",
"update-version:default": "./update_version.sh",
"clean:node_modules2": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' +",
"update-version": "bash update_version.sh"
},
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@types/chrome": "^0.0.270",
"@types/node": "^20.16.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"esbuild": "^0.23.0",
"eslint": "8.57.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.11",
"tslib": "^2.6.3",
"turbo": "^2.0.12",
"typescript": "5.5.4",
"vite": "5.4.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --write"
]
},
"packageManager": "pnpm@9.9.0",
"engines": {
"node": ">=18.19.1"
}
}