-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.7 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "prime-solo-project",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node dist/server/server.js",
"dev": "concurrently -c auto npm:client npm:server",
"client": "vite",
"server": "tsup --watch",
"build": "concurrently -c auto 'npm:build:*'",
"build:client": "vite build",
"build:server": "tsup",
"preview": "vite preview",
"lint": "concurrently -c auto 'npm:lint:*'",
"lint:eslint": "eslint --cache .",
"lint:prettier": "prettier --cache --check .",
"eslint": "eslint --cache",
"prettier": "prettier --cache"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@matejmazur/react-katex": "^3.1.3",
"@node-rs/argon2": "^1.7.2",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@tanstack/react-table": "^8.11.6",
"axios": "^1.6.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.0",
"connect-ensure-login": "^0.1.1",
"connect-pg-simple": "^9.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-session": "^1.17.3",
"helmet": "^7.1.0",
"katex": "^0.16.9",
"lucide-react": "^0.311.0",
"morgan": "^1.10.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.3",
"react-hotkeys-hook": "^4.4.4",
"react-redux": "^9.1.0",
"react-router-dom": "^6.21.2",
"redux": "^5.0.1",
"redux-saga": "^1.3.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.0",
"@hookform/devtools": "^4.3.1",
"@redux-devtools/extension": "^3.3.0",
"@tailwindcss/typography": "^0.5.10",
"@tanstack/react-table-devtools": "^8.11.6",
"@tsconfig/node20": "^20.1.2",
"@tsconfig/strictest": "^2.0.2",
"@tsconfig/vite-react": "^3.0.0",
"@types/connect-ensure-login": "^0.1.9",
"@types/connect-pg-simple": "^7.0.3",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.5",
"@types/passport": "^1.0.16",
"@types/passport-local": "^1.0.38",
"@types/pg": "^8.10.9",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-regexp": "^2.2.0",
"eslint-plugin-security": "^2.1.0",
"eslint-plugin-tailwindcss": "^3.14.0",
"lightningcss": "^1.23.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-imagetools": "^6.2.9",
"vite-tsconfig-paths": "^4.3.1"
},
"overrides": {
"cmdk": {
"@radix-ui/react-dialog": "$@radix-ui/react-dialog"
}
},
"heroku-run-build-script": true
}