-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.24 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.24 KB
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
{
"name": "projet-master",
"version": "0.1.0",
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:migrate": "set TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' && knex migrate:latest",
"db:migrate:undo": "set TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' && knex migrate:down",
"db:migrate:make": "set TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' && knex migrate:make",
"vercel-build": "prisma generate && npm run db:migrate && next build",
"db:reset": "npx prisma migrate reset && npx prisma migrate dev --name init-db"
},
"dependencies": {
"@babel/preset-react": "^7.23.3",
"@daypilot/daypilot-lite-react": "^3.20.1",
"@fullcalendar/common": "^5.11.5",
"@fullcalendar/core": "^6.1.10",
"@fullcalendar/daygrid": "^6.1.10",
"@fullcalendar/interaction": "^6.1.10",
"@fullcalendar/react": "^6.1.10",
"@fullcalendar/timegrid": "^6.1.10",
"@prisma/client": "^5.8.1",
"@vercel/postgres": "^0.5.1",
"@xmldom/xmldom": "^0.8.10",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.3.3",
"cookie": "^0.6.0",
"dotenv": "^16.4.1",
"js-cookie": "^3.0.5",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.8.2",
"knex": "^3.1.0",
"next": "14.0.3",
"next-auth": "^4.24.7",
"next-qrcode": "^2.5.1",
"next-transpile-modules": "^10.0.1",
"node": "^21.6.0",
"nodemailer": "^6.9.13",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-toastify": "^10.0.4",
"reactstrap": "^9.2.2",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/cookie": "^0.6.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"postcss": "^8",
"prisma": "^5.8.1",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}