-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.03 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
{
"name": "hamid-template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"start:frontend": "yarn workspace @scope/frontend dev",
"start:backend": "yarn workspace @scope/backend dev",
"build:frontend": "yarn workspace @scope/frontend build",
"build:backend": "yarn workspace @scope/backend build",
"db:init": "yarn workspace @scope/backend db:init",
"db:migrate": "yarn workspace @scope/backend db:migrate",
"db:seed": "yarn workspace @scope/backend db:seed",
"start": "concurrently \"yarn workspace @scope/backend dev\" \"yarn workspace @scope/frontend dev\""
},
"dependencies": {
"@neondatabase/serverless": "^0.10.4",
"@prisma/adapter-neon": "^6.1.0",
"@prisma/client": "^6.1.0",
"autoprefixer": "^10.4.20",
"axios": "^1.7.9",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"dotenv-flow": "^4.1.0",
"express": "^4.21.2",
"gsap": "^3.12.5",
"pdfkit": "^0.15.2",
"pg": "^8.13.1",
"postcss": "^8.4.49",
"prisma": "^6.1.0",
"prop-types": "^15.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^3.4.17",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"@types/prop-types": "^15.7.14",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitejs/plugin-react-swc": "^3.7.2",
"concurrently": "^7.0.0",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"nodemon": "^3.1.9",
"swc": "^1.0.11",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.6"
},
"engines": {
"node": ">=16.0.0"
}
}