forked from Codeit-FE-5-part3-10/The-Julge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.04 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.04 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
{
"name": "mantine-minimal-next-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "next lint && npm run lint:stylelint",
"export": "next build && next export",
"typecheck": "tsc --noEmit",
"lint:stylelint": "stylelint '**/*.css' --cache",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\""
},
"dependencies": {
"@mantine/core": "7.10.0",
"@mantine/hooks": "7.10.0",
"@next/bundle-analyzer": "^14.1.3",
"@tabler/icons-react": "^3.0.0",
"@tanstack/react-query": "^5.40.1",
"@tanstack/react-query-devtools": "^5.44.0",
"axios": "^1.7.2",
"classnames": "^2.5.1",
"date-fns": "^3.6.0",
"jwt-decode": "^4.0.0",
"next": "^14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.5",
"recoil": "^0.7.7",
"recoil-persist": "^5.1.0",
"sass": "^1.77.4"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@next/eslint-plugin-next": "^14.1.3",
"@tanstack/eslint-plugin-query": "^5.35.6",
"@types/jwt-decode": "^3.1.0",
"@types/node": "^20.11.26",
"@types/react": "18.2.65",
"@types/react-dom": "18.2.21",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"babel-loader": "^9.1.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-mantine": "3.2.0",
"eslint-config-next": "14.1.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.35",
"postcss-preset-mantine": "1.15.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.2.5",
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.0.0",
"typescript": "5.4.2"
},
"packageManager": "[email protected]"
}