-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.92 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
{
"name": "PokeDraft",
"private": false,
"version": "0.0.1",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint . --ext .ts,.tsx --cache",
"lint:stylelint": "stylelint '**/*.css' --cache",
"prettier": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npm run typecheck && npm run prettier && npm run lint && npm run build"
},
"dependencies": {
"@mantine/carousel": "^7.10.0",
"@mantine/core": "^7.10.0",
"@mantine/form": "^7.10.0",
"@mantine/hooks": "^7.10.0",
"@mantine/modals": "^7.10.0",
"@mantine/notifications": "^7.10.0",
"@mantine/spotlight": "^7.10.0",
"@mantine/tiptap": "^7.10.0",
"@pkmn/dex": "^0.8.6",
"@pkmn/img": "^0.2.23",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/supabase-js": "^2.39.3",
"@tabler/icons-react": "^2.46.0",
"@tanstack/react-query": "^5.37.1",
"@tiptap/extension-highlight": "^2.4.0",
"@tiptap/extension-link": "^2.4.0",
"@tiptap/extension-subscript": "^2.4.0",
"@tiptap/extension-superscript": "^2.4.0",
"@tiptap/extension-text-align": "^2.4.0",
"@tiptap/extension-underline": "^2.4.0",
"@tiptap/pm": "^2.4.0",
"@tiptap/react": "^2.4.0",
"@tiptap/starter-kit": "^2.4.0",
"@vercel/speed-insights": "^1.0.7",
"embla-carousel-react": "^7.1.0",
"fuse.js": "^7.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.0",
"sanitize-html": "^2.13.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/react": "^18.2.36",
"@types/react-dom": "^18.2.14",
"@types/sanitize-html": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitejs/plugin-react": "^4.2.1",
"dotenv": "^16.3.2",
"eslint": "^8.53.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-mantine": "3.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.7.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"postcss": "^8.4.32",
"postcss-preset-mantine": "1.12.3",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.1.1",
"prop-types": "^15.8.1",
"stylelint": "^16.0.2",
"stylelint-config-standard-scss": "^12.0.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-tsconfig-paths": "^4.2.2"
}
}