-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
89 lines (89 loc) · 2.72 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
{
"name": "next-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start:with-cron-jobs": "run-p start cron",
"cron": "tsx cron-jobs/delete_expired_ip_rules.ts",
"lint": "next lint",
"lint:fix": "yarn lint --fix",
"prettier": "prettier src --check",
"prettier:fix": "yarn prettier --write",
"format": "yarn prettier:fix && yarn lint:fix",
"test": "vitest",
"test:start": "yarn build && yarn start",
"test:e2e": "playwright test",
"test:e2e:chrome": "playwright test --project='chromium'"
},
"engines": {
"node": ">=18.17.0"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.11.5",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@fingerprintjs/fingerprintjs-pro-react": "^2.6.2",
"@fingerprintjs/fingerprintjs-pro-server-api": "^5.0.0",
"@inkeep/uikit": "^0.3.16",
"@mui/icons-material": "^5.15.11",
"@mui/material": "^5.15.11",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slider": "^1.1.2",
"@t3-oss/env-nextjs": "^0.9.2",
"classnames": "^2.5.1",
"cors": "^2.8.5",
"framer-motion": "^11.0.8",
"is-ip": "^5.0.1",
"leaflet": "^1.9.4",
"next": "^14.2.4",
"next-usequerystate": "^1.17.0",
"notistack": "^3.0.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"react-query": "^3.39.3",
"react-syntax-highlighter": "^15.5.0",
"react-use": "^17.5.0",
"react18-json-view": "^0.2.9-canary.0",
"sequelize": "^6.37.3",
"sharp": "^0.33.2",
"twilio": "^5.0.1"
},
"devDependencies": {
"@fingerprintjs/eslint-config-dx-team": "^0.1.0",
"@fingerprintjs/prettier-config-dx-team": "^0.1.0",
"@fingerprintjs/tsconfig-dx-team": "^0.0.2",
"@playwright/test": "^1.42.1",
"@types/cors": "^2.8.17",
"@types/leaflet": "^1.9.8",
"@types/node": "^20.11.24",
"@types/node-cron": "^3.0.11",
"@types/prismjs": "^1.26.3",
"@types/react": "^18.2.61",
"@types/react-syntax-highlighter": "^15.5.11",
"@vitejs/plugin-react": "^4.2.1",
"dotenv": "^16.4.5",
"eslint-config-next": "^14.1.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react-hooks": "^4.6.0",
"include-media": "^2.0.0",
"jsdom": "^24.0.0",
"node-cron": "^3.0.3",
"npm-run-all": "^4.1.5",
"sass": "^1.71.1",
"sqlite3": "^5.1.7",
"swiper": "^11.0.7",
"tslib": "^2.6.2",
"tsx": "^4.7.1",
"typescript": "^5.5.3",
"vitest": "^1.3.1",
"zod": "^3.22.4"
}
}