generated from Jonghakseo/chrome-extension-boilerplate-react-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.74 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
{
"name": "social-detox",
"version": "1.0.3",
"description": "The Social Detox extension aims to help users manage and limit their social media usage by tracking time spent on social platforms and providing tools to reduce distractions.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Iamsheye/social-detox.git"
},
"scripts": {
"clean:node_modules": "pnpx rimraf --glob **/node_modules",
"clean:turbo": "turbo clean && turbo daemon stop && rimraf dist && rimraf .turbo",
"clean": "pnpm clean:turbo && pnpm clean:node_modules",
"clean:install": "pnpm clean:node_modules && pnpm install --frozen-lockfile",
"build": "turbo build",
"build:firefox": "cross-env __FIREFOX__=true turbo build",
"zip": "turbo zip",
"zip:firefox": "cross-env __FIREFOX__=true turbo zip",
"dev-server": "pnpm -F hmr ready && pnpm -F hmr dev",
"dev": "turbo ready && turbo watch dev --concurrency 20",
"dev:firefox": "turbo ready && cross-env __FIREFOX__=true turbo watch dev --concurrency 20",
"test": "turbo test",
"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": "run-script-os",
"update-version:win32": "bash update_version.sh",
"update-version:default": "./update_version.sh"
},
"type": "module",
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@types/chrome": "^0.0.270",
"@types/node": "^20.14.10",
"@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.19",
"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.38",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.6",
"tslib": "^2.6.3",
"turbo": "^2.0.12",
"typescript": "5.5.4",
"vite": "5.4.1",
"run-script-os": "^1.1.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
]
},
"packageManager": "pnpm@9.9.0",
"engines": {
"node": ">=18.12.0"
}
}