-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "money-trail",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate": "drizzle-kit generate:pg",
"migrate:up": "node ./src/db/migrate.js"
},
"dependencies": {
"@ant-design/nextjs-registry": "^1.0.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@tanstack/react-query": "^5.15.5",
"@tremor/react": "^3.12.1",
"antd": "^5.13.0",
"csvtojson": "^2.0.10",
"drizzle-orm": "^0.29.3",
"luxon": "^3.4.4",
"next": "14.0.4",
"postgres": "^3.4.3",
"react": "^18",
"react-dom": "^18",
"uuid": "^9.0.1"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.14.6",
"@types/luxon": "^3.4.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^9.0.7",
"autoprefixer": "^10.0.1",
"drizzle-kit": "^0.20.9",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-plugin-unused-imports": "^3.0.0",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}