-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.97 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
{
"name": "kfet",
"author": {
"name": "PolyBytes",
"email": "[email protected]",
"url": "https://github.com/polytech-dijon"
},
"private": true,
"scripts": {
"docker:dev": "docker compose -f docker-compose.dev.yaml up --build",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:deploy": "dotenv -e .env.local -- prisma migrate deploy",
"db:migrate": "dotenv -e .env.local -- prisma migrate dev",
"db:seed": "dotenv -e .env.local -- ts-node --compilerOptions \"{\\\"target\\\": \\\"ES2017\\\", \\\"module\\\": \\\"commonjs\\\"}\" prisma/seed.ts"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@headlessui/react": "^1.4.2",
"@mui/icons-material": "^6.1.2",
"@mui/material": "^6.1.2",
"@mui/styled-engine-sc": "^6.1.2",
"@prisma/client": "^3.11.1",
"@types/dom-serial": "^1.0.3",
"@types/react-select": "^5.0.1",
"bullmq": "^5.21.1",
"framer-motion": "^6.2.6",
"isomorphic-unfetch": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"next": "^12.0.7",
"next-svgr": "^0.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hot-toast": "^2.1.1",
"react-icons": "^4.3.1",
"react-redux": "^7.2.6",
"react-select": "^5.3.0",
"redux": "^4.1.2",
"redux-persist": "^6.0.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.17.0",
"sequelize-typescript": "^2.1.3",
"sharp": "^0.29.3",
"styled-components": "^6.1.13",
"tailwindcss": "^3.0.19"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^17.0.8",
"@types/react": "17.0.34",
"@types/validator": "^13.7.1",
"autoprefixer": "^10.4.0",
"dotenv": "^10.0.0",
"dotenv-cli": "^5.1.0",
"eslint": "7",
"eslint-config-next": "12.0.2",
"postcss": "^8.4.5",
"prisma": "^3.12.0",
"ts-node": "^10.4.0",
"typescript": "^5.6.2"
}
}