-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.23 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
{
"name": "trophy-hunt",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"types": "tsc --noemit",
"check": "npm run lint && npm run types",
"format": "npx prettier . --write"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@mantine/core": "^7.4.0",
"@mantine/form": "^7.4.0",
"@mantine/hooks": "^7.4.0",
"@mantine/modals": "^7.4.0",
"@mantine/notifications": "^7.4.0",
"@mantine/tiptap": "^7.4.0",
"@supabase/ssr": "^0.0.10",
"@supabase/supabase-js": "^2.38.4",
"@tabler/icons-react": "^2.45.0",
"@tiptap/extension-highlight": "^2.1.13",
"@tiptap/extension-image": "^2.1.13",
"@tiptap/extension-link": "^2.1.13",
"@tiptap/extension-task-item": "^2.1.13",
"@tiptap/extension-task-list": "^2.1.13",
"@tiptap/extension-text-align": "^2.1.13",
"@tiptap/extension-underline": "^2.1.13",
"@tiptap/extension-youtube": "^2.1.13",
"@tiptap/pm": "^2.1.13",
"@tiptap/react": "^2.1.13",
"@tiptap/starter-kit": "^2.1.13",
"axios": "^1.5.1",
"clsx": "^2.0.0",
"dayjs": "^1.11.10",
"next": "14.0.3",
"psn-api": "^2.10.1",
"react": "^18",
"react-dom": "^18",
"react-retiny-virtual-list": "^2.3.0",
"react-rewards": "^2.0.4",
"react-virtuoso": "^4.6.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.31",
"postcss-preset-mantine": "^1.9.1",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/psn-api.esm.js",
"types": "./dist/index.d.ts"
}
}
}