-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 2.93 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
{
"name": "bde-isima",
"appName": "BDE ISIMA",
"website": "https://bde.isima.fr",
"version": "5.0.0",
"scripts": {
"build": "blitz build",
"dev": "blitz dev",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"lint": "eslint **/*.{ts,tsx} --fix",
"migrate": "prisma db push",
"postinstall": "husky install",
"seed": "prisma migrate reset --skip-generate --skip-seed && prisma db push && prisma db seed",
"start": "blitz start",
"studio": "blitz prisma studio"
},
"prisma": {
"schema": "db/schema.prisma",
"seed": "ts-node db/seeds/index.ts"
},
"prettier": {
"bracketSpacing": true,
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"importOrder": [
"^react$",
"<THIRD_PARTY_MODULES>",
"^@mui/icons-material/(.*)$",
"^next/(.*)$",
"^@blitzjs/(.*)$",
"^app/(.*)$",
"^pages/(.*)$",
"^public/(.*)$",
"^[./]"
],
"importOrderSeparation": true
},
"dependencies": {
"@blitzjs/auth": "2.0.0-beta.21",
"@blitzjs/next": "2.0.0-beta.21",
"@blitzjs/rpc": "2.0.0-beta.21",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "^5.0.0-alpha.102",
"@mui/material": "^5.11.4",
"@mui/x-date-pickers": "^5.0.13",
"@prisma/client": "^4.8.1",
"blitz": "2.0.0-beta.21",
"caniuse-lite": "^1.0.30001553",
"chart.js": "3.9.1",
"cuid": "^2.1.8",
"date-fns": "^2.29.3",
"filefy": "^0.1.11",
"final-form": "^4.20.7",
"final-form-arrays": "^3.0.2",
"handlebars": "^4.7.7",
"mjml": "^4.13.0",
"mjml-react": "^2.0.8",
"mui-rff": "^6.1.2",
"next": "^12.3.4",
"next-pwa": "^5.6.0",
"nodemailer": "^6.8.0",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-chartjs-2": "4.3.1",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-final-form": "^6.5.9",
"react-final-form-arrays": "^3.1.4",
"react-multi-carousel": "^2.8.2",
"react-swipeable": "^7.0.0",
"react-virtualized-auto-sizer": "^1.0.7",
"react-window": "^1.8.8",
"sanitize-html": "^2.8.1",
"zod": "3.19.1"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/node": "^16.18.11",
"@types/nodemailer": "^6.4.7",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"autoprefixer": "^10.4.13",
"eslint": "7.32.0",
"eslint-config-next": "^12.3.4",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.2",
"prettier-plugin-prisma": "^4.8.0",
"pretty-quick": "^3.1.3",
"prisma": "^4.8.1",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=16"
},
"engineStrict": true
}