-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.8 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
{
"name": "code-study-planner",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"typeorm": "ts-node -r backend/datasource.ts ./node_modules/typeorm/cli.js",
"migration:generate": "npm run typeorm -- migration:generate -d backend/datasource.ts",
"format": "prettier . --write"
},
"dependencies": {
"@ant-design/icons": "^5.3.3",
"@ant-design/nextjs-registry": "^1.0.0",
"@hello-pangea/dnd": "^16.5.0",
"@react-oauth/google": "^0.12.1",
"@sentry/nextjs": "^8.17.0",
"@tanstack/react-query": "^5.28.4",
"@tanstack/react-virtual": "^3.3.0",
"antd": "^5.15.2",
"classnames": "^2.5.1",
"code-university": "^1.8.3",
"dayjs": "^1.11.10",
"fuzzy-search": "^3.2.1",
"gapi-script": "^1.2.0",
"jose": "^5.2.3",
"jsonpath-ts": "^0.1.1",
"next": "14.1.3",
"pg": "^8.11.3",
"react": "^18",
"react-dom": "^18",
"react-resizable-panels": "^2.0.13",
"react-virtualized": "^9.22.5",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.20",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.4",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/fuzzy-search": "^2.1.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-virtualized": "^9.21.30",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.3",
"jsdom": "^24.0.0",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "^5",
"vitest": "^1.5.1"
}
}