-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.27 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
{
"name": "real-ice-gs-thesis-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-fix": "next lint --fix",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx",
"format": "prettier --write .",
"test-all": "yarn check-format && yarn check-lint && yarn check-types && yarn build",
"prepare": "husky install",
"postinstall": "husky install"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@mantine/core": "^7.3.2",
"@mantine/dates": "^7.3.2",
"@mantine/dropzone": "^7.3.2",
"@mantine/form": "^7.3.2",
"@mantine/hooks": "^7.3.2",
"@mantine/notifications": "^7.3.2",
"@mantine/tiptap": "^7.3.2",
"@tabler/icons-react": "^2.44.0",
"@tiptap/core": "^2.1.13",
"@tiptap/extension-link": "^2.1.13",
"@tiptap/pm": "^2.1.13",
"@tiptap/react": "^2.1.13",
"@tiptap/starter-kit": "^2.1.13",
"@types/file-saver": "^2.0.7",
"@types/intl": "^1.2.2",
"@types/js-cookie": "^3.0.6",
"axios": "^1.6.2",
"dayjs": "^1.11.10",
"file-saver": "^2.0.5",
"intl": "^1.2.5",
"js-cookie": "^3.0.5",
"jwt-decode": "^4.0.0",
"next": "^14.0.3",
"postcss": "^8.4.32",
"react": "^18",
"react-dom": "^18",
"react-imask": "^7.3.0",
"swr": "^2.2.4"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"@typescript-eslint/typescript-estree": "^6.12.0",
"eslint": "8.51.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-mantine": "3.1.0",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"postcss-preset-mantine": "^1.12.2",
"prettier": "^3.1.0",
"typescript": "5.1.6"
},
"packageManager": "yarn@4.0.2"
}