-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.56 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
{
"name": "keweb",
"version": "2.0.0",
"private": true,
"scripts": {
"clean": "rm -rf out; rm -rf .next",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"code": "npm run prettier && npm run lint -- --fix",
"lazy": "npm run code && npm run test && npm run build ",
"full": "npm run lazy && npm run start",
"postinstall": "prisma generate",
"test": "jest -i"
},
"dependencies": {
"@babel/core": "7.21.3",
"@chakra-ui/icons": "2.0.17",
"@chakra-ui/react": "2.5.2",
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@fullcalendar/common": "5.11.4",
"@fullcalendar/core": "6.1.5",
"@fullcalendar/daygrid": "6.1.5",
"@fullcalendar/interaction": "6.1.5",
"@fullcalendar/list": "6.1.5",
"@fullcalendar/react": "6.1.5",
"@fullcalendar/timegrid": "6.1.5",
"@next-auth/prisma-adapter": "1.0.5",
"@prisma/client": "4.11.0",
"babel-plugin-transform-require-ignore": "0.1.1",
"csv-parser": "3.0.0",
"formidable": "2.1.1",
"framer-motion": "10.8.4",
"google-map-react": "2.2.0",
"moment": "2.29.4",
"moment-timezone": "0.5.41",
"next": "13.2.4",
"next-auth": "4.20.1",
"next-transpile-modules": "10.0.0",
"node-telegram-bot-api": "0.61.0",
"nodemailer": "6.9.1",
"react": "18.2.0",
"react-calendar": "4.0.0",
"react-csv": "2.2.2",
"react-dom": "18.2.0",
"react-icons": "4.8.0",
"react-scroll": "1.8.9",
"react-table": "7.8.0",
"safe-json-stringify": "1.2.0",
"sharp": "0.31.3"
},
"devDependencies": {
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.0",
"@next/eslint-plugin-next": "13.2.4",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@types/formidable": "2.0.5",
"@types/node": "18.15.5",
"@types/node-telegram-bot-api": "0.61.4",
"@types/react": "18.0.28",
"@types/react-csv": "1.1.3",
"@types/react-table": "7.7.14",
"@typescript-eslint/eslint-plugin": "5.56.0",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard-with-typescript": "34.0.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.32.2",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"json5": "2.2.3",
"prettier": "2.8.6",
"prisma": "4.11.0",
"ts-jest": "29.0.5",
"typescript": "4.9.4"
}
}