-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.5 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
{
"name": "kiwinews-webapp",
"version": "0.1.0",
"private": true,
"scripts": {
"prebuild": "yarn edgedb:generate:queries",
"build": "next build",
"clean": "rimraf --glob .next 'src/server/**/*.query.ts' tsconfig.tsbuildinfo",
"dev": "next dev",
"edgedb:generate:queries": "npx @edgedb/generate queries --target ts",
"lint": "SKIP_ENV_VALIDATION=1 next lint --report-unused-disable-directives=error",
"lint:fix:all": "SKIP_ENV_VALIDATION=1 next lint --report-unused-disable-directives=error --fix",
"lint:ci:all": "SKIP_ENV_VALIDATION=1 next lint --report-unused-disable-directives=error --max-warnings=0",
"lint:precommit": "SKIP_ENV_VALIDATION=1 next lint --report-unused-disable-directives=error --fix --max-warnings=0",
"precommit": "lint-staged",
"prepare": "(husky install || (echo 'WARN: husky not installed' && exit 0))",
"start": "next start",
"tsc:typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@rainbow-me/rainbowkit": "^1.3.0",
"@t3-oss/env-nextjs": "^0.6.1",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.43.1",
"@trpc/next": "^10.43.1",
"@trpc/react-query": "^10.43.1",
"@trpc/server": "^10.43.1",
"@web3modal/wagmi": "^3.2.0",
"bs58": "^5.0.0",
"canonicalize": "^2.0.0",
"cbor-x": "^1.5.4",
"classnames": "^2.3.2",
"edgedb": "^1.4.0",
"feed": "^4.2.2",
"next": "^13.5.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"superjson": "1.13.3",
"ts-invariant": "^0.10.3",
"viem": "^1.19.15",
"wagmi": "^1.4.12",
"zod": "^3.22.4"
},
"devDependencies": {
"@edgedb/generate": "^0.3.4",
"@tailwindcss/forms": "^0.5.7",
"@total-typescript/ts-reset": "^0.5.1",
"@types/eslint": "^8.44.7",
"@types/lint-staged": "^13.2.2",
"@types/node": "^18.16.19",
"@types/prettier": "^3.0.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.53.0",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"tailwindcss": "^3.3.5",
"tailwindcss-debug-screens": "^2.2.1",
"typescript": "^5.2.2"
},
"ct3aMetadata": {
"initVersion": "7.12.0"
}
}