This repository was archived by the owner on Apr 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.89 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
{
"name": "microblog",
"version": "1.0.0",
"scripts": {
"typecheck": "tsc",
"eslint": "eslint . --ext .ts,.tsx",
"eslint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write .",
"lint": "next lint",
"dev": "next dev -p 4000",
"build": "next build",
"start": "next start -p 4000",
"test": "vitest"
},
"author": "StarkMP",
"devDependencies": {
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.0.0",
"@types/node": "20.14.12",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/set-cookie-parser": "2.4.10",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitejs/plugin-react": "4.3.1",
"autoprefixer": "10.4.19",
"eslint": "8.47.0",
"eslint-config-next": "13.4.18",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"jsdom": "25.0.0",
"msw": "2.4.0",
"postcss": "8.4.40",
"postcss-preset-mantine": "1.17.0",
"postcss-simple-vars": "7.0.1",
"prettier": "2.8.8",
"sass": "1.77.8",
"turbo": "2.0.9",
"typescript": "4.9.5",
"vitest": "^2.0.5"
},
"baseUrl": "",
"browserslist": [
"> 1%",
"last 4 versions",
"Firefox ESR",
"not ie < 9"
],
"dependencies": {
"@mantine/core": "7.12.1",
"@mantine/form": "7.12.1",
"@mantine/hooks": "7.12.1",
"@mantine/notifications": "7.12.1",
"@reduxjs/toolkit": "2.2.7",
"@tabler/icons-react": "3.11.0",
"next": "14.2.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-infinite-scroll-component": "6.1.0",
"react-redux": "9.1.2",
"server-only": "0.0.1",
"set-cookie-parser": "2.7.0"
},
"engines": {
"node": "^20"
},
"packageManager": "npm@10.8.1"
}