-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·71 lines (71 loc) · 2.19 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
{
"name": "discord-status-as-image",
"version": "1.2.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"server": "cd server && npx tsx main.ts",
"refiner": "cd .. && cd refiner-discord-bot && python main.py",
"build": "tsc && vite build"
},
"dependencies": {
"@mantine/core": "7.12.2",
"@mantine/form": "^7.12.2",
"@mantine/hooks": "7.12.2",
"@mantine/notifications": "^7.12.2",
"@tabler/icons-react": "^3.1.0",
"@types/react-helmet": "^6.1.11",
"express": "^4.19.2",
"http-server": "^14.1.1",
"node-fetch": "^3.3.2",
"pocketbase": "^0.21.1",
"puppeteer-core": "^22.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.22.3",
"serve": "^14.2.1",
"ts-import": "^5.0.0-beta.0"
},
"devDependencies": {
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/dotenv": "^8.2.0",
"@types/eslint": "~8.56.7",
"@types/express": "^4.17.21",
"@types/http-server": "~0.12.4",
"@types/identity-obj-proxy": "~3.0.2",
"@types/jsdom": "~21.1.6",
"@types/node": "^20.12.3",
"@types/prop-types": "~15.7.12",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.23",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-mantine": "3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.38",
"postcss-preset-mantine": "1.13.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.2.5",
"prop-types": "^15.8.1",
"stylelint": "^16.3.1",
"stylelint-config-standard-scss": "^13.1.0",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"vite": "^5.2.7",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
}
}