-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.8 KB
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
{
"name": "ts-docgen",
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/*",
"lib/*"
],
"scripts": {
"dev:web": "cd apps/web && next dev",
"dev:worker": "cd apps/worker && inngest dev",
"build:web": "cd apps/web && next build",
"build:worker": "cd apps/worker && tsc",
"build": "npm run build:web && npm run build:worker",
"lint": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "jest --coverage",
"test:watch": "jest --watch",
"doc:gen": "typedoc --out docs",
"pack": "bash scripts/pack.sh",
"deploy:web": "cd apps/web && npx vercel --prod",
"deploy:worker": "cd apps/worker && npx wrangler deploy",
"prepare": "husky install"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"autoprefixer": "^10.4.21",
"dotenv": "^16.5.0",
"eslint": "^8.0.0",
"eslint-plugin-jest": "^27.0.0",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^8.0.0",
"jest": "^29.0.0",
"lint-staged": "^13.0.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-java": "^2.6.7",
"tailwindcss": "^4.1.5",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typedoc": "^0.28.3",
"typedoc-plugin-markdown": "^4.6.3",
"typescript": "^5.0.0",
"zod": "^3.0.0"
},
"dependencies": {
"@supabase/supabase-js": "^2.49.4",
"@types/diff": "^7.0.2",
"@types/prettier": "^2.7.3",
"diff": "^5.1.0",
"inngest": "^3.35.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,jsx,json,md}": [
"prettier --write"
]
}
}