-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.93 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.93 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
{
"name": "amsci",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"export": "next build && next export",
"lint": "next lint",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\""
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@mantine/core": "6.0.22",
"@mantine/dates": "^6.0.22",
"@mantine/dropzone": "6.0.22",
"@mantine/form": "6.0.22",
"@mantine/hooks": "6.0.22",
"@mantine/next": "6.0.22",
"@next/bundle-analyzer": "^14.2.30",
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "6.12.0",
"@tabler/icons-react": "^3.34.0",
"@yudiel/react-qr-scanner": "^2.3.1",
"cookies-next": "^4.3.0",
"dayjs": "^1.11.13",
"jspdf": "^3.0.1",
"mantine-react-table": "^1.3.4",
"next": "14.2.30",
"next-auth": "^4.24.11",
"qrcode": "^1.5.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-toastify": "^11.0.5",
"sharp": "^0.33.5",
"swr": "^2.3.4"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@next/eslint-plugin-next": "^14.2.30",
"@types/node": "^22.16.4",
"@types/qrcode": "^1.5.5",
"@types/react": "18.3.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-loader": "^9.2.1",
"encoding": "^0.1.13",
"eslint": "^8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-mantine": "3.2.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.6.2",
"prisma": "^6.12.0",
"ts-node": "^10.9.2",
"typescript": "5.7.3"
}
}