-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 4.12 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "web-memo",
"version": "1.8.5",
"description": "Web Memo - Chrome Extension",
"bugs": "https://github.com/guesung/Web-Memo/issues",
"homepage": "https://web-memos.vercel.app",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/guesung/Web-Memo.git"
},
"scripts": {
"clean": "rimraf dist && rimraf .turbo && turbo clean",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"build": "turbo build",
"build:extension": "turbo build --filter=!web",
"build:web": "turbo build --filter=web",
"start:web": "turbo start --filter=web",
"build:firefox": "cross-env __FIREFOX__=true turbo build",
"zip": "turbo zip",
"dev-servmer": "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",
"dev:web": "turbo ready && turbo run dev --filter web",
"type-check": "turbo type-check",
"tsc-watch": "turbo tsc-watch",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --fix --ext .ts,.tsx",
"prettier": "turbo prettier --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"prepare": "husky",
"test:jest": "vitest",
"test": "exec playwright test",
"test-report": "exec playwright show-report",
"update-version": "run-script-os",
"update-version:win32": "bash update_version.sh",
"update-version:default": "./update_version.sh",
"package": "pnpm i && pnpm clean && pnpm build && pnpm zip",
"generate-supabase-type": "supabase gen types --lang=typescript --project-id czwtqukymcqoberdoltq --schema feedback --schema memo > packages/shared/src/types/supabase.ts && prettier --write packages/shared/src/types/supabase.ts"
},
"files": [
"dist"
],
"type": "module",
"dependencies": {
"@sentry/react": "^8.30.0",
"@supabase/ssr": "^0.5.1",
"@supabase/supabase-js": "^2.45.4",
"@tanstack/react-query": "^5.59.0",
"@tanstack/react-query-devtools": "^5.59.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"driver.js": "^1.3.1",
"es-hangul": "^2.2.4",
"eslint-config-turbo": "^2.3.3",
"framer-motion": "^11.11.8",
"lucide-react": "^0.456.0",
"next": "14.2.10",
"next-themes": "^0.4.3",
"openai": "^4.57.0",
"postcss-import": "^16.1.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.53.2",
"tsc-watch": "^6.2.1",
"uvcanvas": "^0.2.2",
"vite-plugin-svgr": "^4.3.0",
"youtube-transcript": "^1.2.1"
},
"devDependencies": {
"@playwright/test": "^1.47.0",
"@sentry/vite-plugin": "^2.22.4",
"@tanstack/eslint-plugin-query": "^5.58.1",
"@types/chrome": "^0.0.268",
"@types/jest": "^29.5.14",
"@types/node": "^20.14.10",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.3",
"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-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.10.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.5",
"lint-staged": "^15.2.7",
"overlay-kit": "^1.4.1",
"postcss": "^8.4.38",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"run-script-os": "^1.1.6",
"supabase": "^1.192.5",
"tailwindcss": "^3.4.10",
"tslib": "^2.6.3",
"turbo": "^2.1.1",
"typescript": "5.5.3",
"vite": "5.3.3",
"vitest": "^2.1.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier . --write"
]
},
"sideEffects": false,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.12.0"
}
}