forked from UTDNebula/jupiter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.34 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
75
76
77
78
79
80
{
"name": "nebula-jupiter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "NODE_OPTIONS=--experimental-vm-modules dotenv jest --detectOpenHandles --forceExit",
"drizzle:generate": "dotenv drizzle-kit generate:pg",
"drizzle:push": "dotenv drizzle-kit push:pg"
},
"dependencies": {
"@auth/core": "^0.15.2",
"@auth/drizzle-adapter": "^0.3.2",
"@radix-ui/react-dialog": "^1.0.5",
"@tanstack/react-query": "^4.29.3",
"@trpc/client": "^10.21.1",
"@trpc/next": "^10.21.1",
"@trpc/react-query": "^10.21.1",
"@trpc/server": "^10.21.1",
"dotenv": "^16.0.3",
"drizzle-orm": "^0.28.6",
"drizzle-zod": "^0.5.1",
"fuse.js": "^6.6.2",
"next": "^13.3.1",
"next-auth": "^4.20.1",
"postgres": "^3.3.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"superjson": "^1.12.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@tailwindcss/typography": "^0.5.9",
"@types/eslint": "^8.21.3",
"@types/jest": "^29.5.5",
"@types/node": "18.16.0",
"@types/react": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"autoprefixer": "^10.4.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^7.3.0",
"drizzle-kit": "^0.19.13",
"eslint": "^8.11.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"jest": "^29.7.0",
"lint-staged": "^12.4.0",
"postcss": "^8.4.12",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "^3.3.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write",
"*.{tsx,ts,js}": [
"eslint --cache --fix .",
"prettier --write {pages,components,modules}/**/*.{tsx,ts,js}"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}