-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.56 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
{
"name": "chrome-extension-boilerplate-react-vite",
"version": "0.4.2",
"description": "chrome extension boilerplate",
"license": "MIT",
"private": true,
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/Jonghakseo/chrome-extension-boilerplate-react-vite.git"
},
"type": "module",
"scripts": {
"clean:bundle": "rimraf dist && turbo clean:bundle",
"clean:node_modules": "pnpx rimraf node_modules && pnpx turbo clean:node_modules",
"clean:turbo": "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",
"type-check": "turbo type-check",
"base-build": "pnpm clean:bundle && turbo build",
"build": "pnpm set-global-env && pnpm base-build",
"build:firefox": "pnpm set-global-env CLI_CEB_FIREFOX=true && pnpm base-build",
"base-dev": "pnpm clean:bundle && turbo ready && turbo watch dev --concurrency 20",
"dev": "pnpm set-global-env CLI_CEB_DEV=true && pnpm base-dev",
"dev:firefox": "pnpm set-global-env CLI_CEB_DEV=true CLI_CEB_FIREFOX=true && pnpm base-dev",
"build:eslint": "tsc -b",
"zip": "pnpm build && pnpm -F zipper zip",
"zip:firefox": "pnpm build:firefox && pnpm -F zipper zip",
"e2e": "pnpm zip && turbo e2e",
"e2e:firefox": "pnpm zip:firefox && turbo e2e",
"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": "bash bash-scripts/update_version.sh",
"copy_env": "bash bash-scripts/copy_env.sh",
"set-global-env": "bash bash-scripts/set_global_env.sh",
"postinstall": "pnpm build:eslint && pnpm copy_env",
"module-manager": "pnpm -F module-manager start"
},
"dependencies": {
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@types/chrome": "0.0.304",
"@types/eslint-plugin-jsx-a11y": "^6.10.0",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.5",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"deepmerge": "^4.3.1",
"esbuild": "^0.25.0",
"eslint": "^9.20.1",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-import-x": "4.6.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"fast-glob": "^3.3.3",
"globals": "^15.14.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"postcss": "^8.5.2",
"postcss-load-config": "^6.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"run-script-os": "^1.1.6",
"tailwindcss": "^3.4.17",
"tslib": "^2.8.1",
"turbo": "^2.4.2",
"typescript": "5.8.1-rc",
"typescript-eslint": "^8.20.0",
"vite": "6.1.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --write"
]
},
"packageManager": "pnpm@9.15.1",
"engines": {
"node": ">=22.12.0"
}
}