-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.79 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
{
"name": "uni-final-project",
"version": "0.0.0-semantic-release",
"packageManager": "yarn@4.9.2",
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"nohoist": [
"**/react",
"**/react-dom",
"**/typescript",
"**/@types/react",
"**/@types/react-dom"
],
"scripts": {
"dev": "turbo run dev",
"dev:clean": "yarn kill-ports && yarn dev",
"predev": "yarn kill-ports",
"build": "turbo run build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"type-check": "turbo run type-check",
"test": "turbo run test",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"test:coverage": "turbo run test:coverage",
"test:all": "turbo run test && yarn test:e2e",
"test:e2e": "yarn workspace @uni-final/e2e-tests test",
"test:e2e:ui": "yarn workspace @uni-final/e2e-tests test:ui",
"test:e2e:headed": "yarn workspace @uni-final/e2e-tests test:headed",
"format": "prettier . --write",
"kill-ports": "chmod +x scripts/kill-ports.sh && scripts/kill-ports.sh",
"db:types": "supabase gen types typescript --local > apps/web/generated/database.ts",
"types:remote": "supabase gen types typescript --project-id txfcnjvmkaqzblztkjmr > apps/web/generated/database.ts",
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"dotenv": "^17.2.1",
"eslint": "^9.33.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.1",
"turbo": "2.5.6",
"typescript": "^5.8.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,json,css,scss,html,md}": [
"yarn prettier --write"
]
},
"dependencies": {
"type-fest": "^4.41.0"
}
}