generated from Jonghakseo/chrome-extension-boilerplate-react-vite
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.94 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
{
"name": "chrome-extension-boilerplate-react-vite",
"version": "0.0.1",
"description": "chrome extension boilerplate",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Jonghakseo/chrome-extension-boilerplate-react-vite.git"
},
"scripts": {
"clean": "rimraf dist && rimraf .turbo && turbo clean",
"build": "turbo build",
"build:firefox": "cross-env __FIREFOX__=true turbo build",
"dev-server": "pnpm -F hmr build && pnpm -F hmr dev-server",
"dev": "concurrently --kill-others \"cross-env __DEV__=true turbo dev --concurrency 20\" \"pnpm dev-server\"",
"dev:firefox": "concurrently --kill-others \"cross-env __DEV__=true __FIREFOX__=true turbo dev --concurrency 20\" \"pnpm dev-server\"",
"test": "turbo test",
"type-check": "turbo type-check",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"prettier": "turbo prettier"
},
"type": "module",
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/node": "^20.12.11",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"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.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"tailwindcss": "^3.4.3",
"tslib": "^2.6.2",
"turbo": "^1.13.3",
"typescript": "5.2.2",
"vite": "^5.2.11"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.12.0"
}
}