-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.03 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.03 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "reviewpop-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint",
"lint:scss": "stylelint \"src/**/*.scss\"",
"lint:scss:fix": "stylelint \"src/**/*.scss\" --fix",
"prepare": "husky"
},
"dependencies": {
"@mantine/core": "^8.3.7",
"@mantine/hooks": "^8.3.7",
"@mantine/modals": "^8.3.7",
"@pop-ui/core": "^0.0.37",
"@pop-ui/foundation": "^0.0.31",
"@tanstack/react-query": "^5.90.6",
"axios": "^1.13.1",
"cookie": "^1.0.2",
"dayjs": "^1.11.19",
"jsonwebtoken": "^9.0.2",
"msw": "^2.11.6",
"next": "16.0.7",
"react": "19.2.1",
"react-dom": "19.2.1",
"swiper": "^12.0.3",
"zustand": "^5.0.8"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@tanstack/react-query-devtools": "^5.90.2",
"@types/cookie": "^1.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"baseline-browser-mapping": "^2.8.32",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"postcss": "^8.5.6",
"postcss-preset-mantine": "^1.18.0",
"postcss-scss": "^4.0.9",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.6.2",
"sass": "^1.93.3",
"stylelint": "^16.25.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard-scss": "^16.0.0",
"stylelint-order": "^7.0.0",
"typescript": "^5"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{scss,css}": [
"stylelint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"msw": {
"workerDirectory": [
"public"
]
},
"packageManager": "yarn@4.12.0"
}