This repository has been archived by the owner on Nov 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 2.62 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
{
"name": "rsr-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "yarn eslint .",
"codehawk": "codehawk .",
"test": "jest --no-cache",
"test:e2e": "playwright test",
"pm2:dev": "pm2 start yarn -- dev",
"pm2:prod": "pm2 start yarn -- start"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
},
"dependencies": {
"@headlessui/react": "^1.6.4",
"@heroicons/react": "^1.0.4",
"argon2": "^0.28.3",
"chart.js": "^3.7.1",
"cookie": "^0.4.1",
"date-fns": "^2.25.0",
"dotenv": "^10.0.0",
"formidable": "^2.0.1",
"framer-motion": "^5.0.2",
"jose": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"leaflet": "^1.7.1",
"lottie-web": "^5.9.4",
"moment": "^2.29.1",
"mongoose": "^6.0.12",
"next": "12.1",
"next-intl": "^2.7.4",
"next-seo": "^5.4.0",
"next-themes": "^0.0.15",
"qrcode.react": "^1.0.1",
"react": "17.0.2",
"react-chartjs-2": "^4.0.1",
"react-circular-progressbar": "^2.0.4",
"react-cookie": "^4.1.1",
"react-dom": "17.0.2",
"react-hot-toast": "^2.2.0",
"react-leaflet": "^3.2.2",
"react-lottie": "^1.2.3",
"react-nice-dates": "^3.1.0",
"react-paginate": "^8.0.0",
"react-select": "^5.2.1",
"react-swipeable": "^7.0.0",
"slug": "^5.1.0",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"ua-parser-js": "^1.0.2",
"uuid": "^8.3.2",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@playwright/test": "^1.22.2",
"@tailwindcss/typography": "^0.5.2",
"@types/formidable": "^2.0.3",
"@types/jest": "^28.1.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/leaflet": "^1.7.5",
"@types/react": "^17.0.33",
"@types/react-leaflet": "^2.8.2",
"@types/react-lottie": "^1.2.6",
"@types/react-paginate": "^7.1.1",
"@types/slug": "^5.0.2",
"@types/uuid": "^8.3.1",
"@types/zxcvbn": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"autoprefixer": "10.4.5",
"codehawk-cli": "^8.3.1",
"csstype": "^3.0.10",
"eslint": "^8.19.0",
"eslint-config-next": "11.1.2",
"jest": "^28.1.1",
"postcss": "^8.3.9",
"prop-types": "^15.8.1",
"tailwindcss": "^3.0.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@babel/core": "^7.17.10",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"csstype": "^3.0.10",
"prop-types": "^15.8.1"
}
}