-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.84 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.84 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
{
"name": "status.network",
"version": "0.2.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"predev": "pnpm install",
"dev": "next dev --port 3002",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"format": "prettier --write . --ignore-path .gitignore",
"check": "tsc --noEmit",
"clean": "rimraf .next .vercel/output node_modules"
},
"dependencies": {
"@formatjs/intl-localematcher": "^0.7.1",
"@radix-ui/react-select": "^2.2.6",
"@status-im/colors": "workspace:*",
"@status-im/components": "workspace:*",
"@status-im/sitemap-utils": "workspace:*",
"@status-im/icons": "workspace:*",
"@status-im/status-network": "workspace:*",
"@vercel/analytics": "^1.5.0",
"cva": "1.0.0-beta.1",
"framer-motion": "^12.0.6",
"negotiator": "^1.0.0",
"next": "15.5.16",
"next-intl": "^4.6.0",
"next-mdx-remote": "^6.0.0",
"react": "19.1.2",
"react-dom": "19.1.2",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"ts-pattern": "^5.6.2",
"zod": "3.25.76"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^8.57.1",
"eslint-config-next": "15.5.16",
"eslint-plugin-tailwindcss": "^3.17.4",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"next-sitemap": "^4.2.3",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.11",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
},
"engines": {
"node": "22.x"
},
"lint-staged": {
"*.{js,mjs,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.css": [
"prettier --write"
]
}
}