-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.94 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.94 KB
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
{
"name": "red-rising-merch",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "husky install",
"postinstall": "npx prisma generate",
"predev": "npx prisma format && npx prisma generate",
"dev": "next dev --turbopack -p 8000",
"build:next": "next build",
"prebuild": "npx prisma generate",
"build": "turbo build:next",
"start": "next start -p 8012",
"export": "next export",
"static": "npm run build && npm run export",
"lint": "next lint",
"check": "node ./test/test",
"wizard": "node ./wizard/index"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@mantine/core": "^7.16.3",
"@mantine/form": "^7.17.0",
"@mantine/hooks": "^7.16.3",
"@mantine/notifications": "^7.16.3",
"@prisma/client": "^6.3.1",
"@tabler/icons-react": "^2.8.0",
"@types/is-url": "^1.2.32",
"axios": "^1.7.9",
"clsx": "^1.2.1",
"iron-session": "^8.0.4",
"is-url": "^1.2.4",
"next": "15.1.7",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-ga4": "^2.1.0",
"sharp": "^0.31.3",
"use-debounce": "^10.0.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@next/eslint-plugin-next": "15.1.7",
"@types/node": "18.14.6",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^9.20.1",
"eslint-config-next": "^15.1.7",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^8.0.3",
"postcss": "^8.5.2",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.5.0",
"prisma": "^6.3.1",
"sass": "^1.58.3",
"turbo": "^1.8.3",
"typescript": "^5.7.3"
},
"overrides": {
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3"
}
}