-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.39 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
{
"name": "pern-notes",
"private": true,
"version": "0.0.1",
"description": "Notes App with PERN stack",
"scripts": {
"lint": "eslint --fix src/**/*.ts",
"format": "prettier --write .",
"dev": "nodemon src/server/server.ts -w src/server",
"start": "npm run build && NODE_ENV=production ts-node src/server/server.ts",
"build": "vite build",
"db:drop": "drizzle-kit drop",
"db:generate": "drizzle-kit generate:pg",
"db:migrate": "ts-node --files src/server/db/migrator.ts"
},
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"axios": "^1.5.1",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.6.1",
"clsx": "^2.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.27.2",
"drizzle-zod": "^0.4.4",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^3.1.2",
"lucide-react": "^0.287.0",
"morgan": "^1.10.0",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.47.0",
"react-router-dom": "^6.17.0",
"reflect-metadata": "^0.1.13",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"tsyringe": "^4.8.0",
"vite-express": "^0.9.2",
"zod": "^3.22.4",
"zustand": "^4.4.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.19",
"@types/jsonwebtoken": "^9.0.3",
"@types/morgan": "^1.9.6",
"@types/node": "^18.18.5",
"@types/pg": "^8.10.5",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.16",
"drizzle-kit": "^0.19.13",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"nodemon": "^2.0.22",
"postcss": "^8.4.31",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vite": "^4.4.11"
}
}