-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.31 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.31 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "root",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev --filter=client",
"dev:server": "turbo dev --filter=server",
"dev:all": "turbo dev --filter=client --filter=server",
"db:migrate": "turbo run db:migrate --filter=server",
"db:push": "turbo run db:push --filter=server",
"db:studio": "turbo run db:studio --filter=server",
"lint": "turbo lint",
"type-check": "turbo type-check",
"clean": "turbo clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test:wepl": "turbo run test --filter=client",
"test:ui": "turbo run test --filter=ui",
"test:watch": "turbo run test:watch"
},
"dependencies": {
"@tanstack/react-query": "^5.32.0",
"@tanstack/react-query-devtools": "^5.32.0",
"@wepl/ui": "*",
"axios": "^1.6.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"next": "^14.2.3",
"next-auth": "^4.24.7",
"qs": "^6.12.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.3.0",
"react-hook-form": "^7.51.5",
"tailwindcss": "^3.4.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@babel/preset-env": "^7.24.6",
"@babel/preset-react": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@next/eslint-plugin-next": "^14.1.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.6",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/jest-plugin-context": "^2.9.7",
"@types/node": "^20.11.24",
"@types/qs": "^6.9.15",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@wepl/eslint-config": "*",
"@wepl/tailwind-config": "*",
"@wepl/typescript-config": "*",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-testing-library": "^6.2.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-plugin-context": "^2.9.0",
"msw": "^2.2.14",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"ts-jest": "^29.1.2",
"turbo": "latest",
"typescript": "^5.3.3",
"undici": "^6.18.2"
},
"engines": {
"node": ">=18"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "npm@10.7.0"
}