-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 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
{
"name": "@examples/kitchen-sink",
"version": "9.14.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"lint": "eslint src",
"lint-fix": "pnpm lint --fix",
"test-dev": "start-server-and-test dev 3000 test",
"test-start": "start-server-and-test start 3000 test",
"ts-node": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\""
},
"prettier": {
"printWidth": 80,
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"@hookform/resolvers": "^3.1.1",
"@tailwindcss/typography": "^0.5.7",
"@tanstack/react-query": "^4.2.3",
"@trpc/client": "^10.34.0",
"@trpc/next": "^10.34.0",
"@trpc/react-query": "^10.34.0",
"@trpc/server": "^10.34.0",
"autoprefixer": "^10.4.11",
"clsx": "^1.1.1",
"next": "12.3.1",
"next-auth": "^4.10.3",
"prism-react-renderer": "^1.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.2",
"start-server-and-test": "^1.12.0",
"superjson": "^1.9.1",
"tailwindcss": "^3.1.8",
"zod": "^3.16.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.4",
"@types/jest": "^29.2.4",
"@types/node": "^17.0.33",
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.26.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"prettier": "^2.6.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.7.0",
"typescript": "4.7.4"
},
"publishConfig": {
"access": "restricted"
}
}