-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.87 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
{
"name": "website",
"version": "1.0.102",
"description": "Website for Valhalla Development",
"license": "GPL-3.0-or-later",
"author": "Ragnar Lothbrok <ragnarlothbrokjr@proton.me>",
"homepage": "https://valhalladev.org",
"repository": "https://github.com/Valhalla-Development/Website.git",
"bugs": {
"url": "https://github.com/Valhalla-Development/Website/issues"
},
"scripts": {
"analyze": "ANALYZE=true next build",
"audit": "npx eslint .",
"build": "next build",
"dev": "next dev --turbo",
"export": "next build && next export",
"jest": "jest",
"jest:watch": "jest --watch",
"lint": "next lint",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"start": "next start",
"test": "npm run prettier:check && npm run lint && npm run typecheck && npm run jest",
"turbo": "turbo build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/serialize": "^1.1.3",
"@emotion/server": "^11.11.0",
"@emotion/utils": "^1.2.1",
"@mantine/carousel": "^6.0.21",
"@mantine/core": "^6.0.21",
"@mantine/dates": "^6.0.21",
"@mantine/form": "^6.0.21",
"@mantine/hooks": "^6.0.21",
"@mantine/modals": "^6.0.21",
"@mantine/next": "^6.0.21",
"@mantine/notifications": "^6.0.21",
"@mantine/nprogress": "^6.0.21",
"@mantine/prism": "^6.0.21",
"@next/bundle-analyzer": "^13.5.6",
"@tabler/icons": "^2.46.0",
"@tabler/icons-react": "^2.46.0",
"cheerio": "^1.0.0-rc.12",
"cookies-next": "^2.1.2",
"dayjs": "^1.11.10",
"embla-carousel-react": "^8.0.0-rc21",
"next": "^13.5.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"yarn-upgrade-all": "^0.7.2"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@next/eslint-plugin-next": "^13.5.6",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.10",
"@types/react": "^18.2.48",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"babel-loader": "^9.1.3",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-mantine": "^2.0.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.11.1",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"turbo": "^1.11.3",
"typescript": "^5.3.3"
},
"packageManager": "yarn@4.0.2"
}