-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
91 lines (91 loc) · 3.11 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"version": "4.22.0",
"description": "Safe docs",
"scripts": {
"build": "next build",
"dev": "next dev",
"generate-api-reference": "pnpm ts-node --project tsconfig.json .github/scripts/generateApiReference.ts",
"generate-code-examples": "node .github/scripts/generateCodeExamples.js",
"generate-supported-networks": "pnpm ts-node --project tsconfig.json .github/scripts/generateSupportedNetworks.ts",
"get-resources-og": "node .github/scripts/getResourcesOg.js",
"validate-resources": "node .github/scripts/validateResources.js",
"linkcheck": "find ./pages -name '*.md*' -print0 | xargs -0 -n1 pnpm markdown-link-check --quiet --progress --config linkchecker-config.json",
"lint": "eslint . && vale pages/ --minAlertLevel=error",
"start": "serve out",
"test": "env-cmd cypress run --headless",
"typecheck": "tsc --noEmit --incremental false",
"prepush": "pnpm lint && pnpm typecheck && pnpm validate-resources",
"prepare": "husky",
"release": "env-cmd release-it --no-npm --only-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/safe-global/safe-docs.git"
},
"author": "Safe Core Contributors <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/safe-global/safe-docs/issues"
},
"homepage": "https://github.com/safe-global/safe-docs#readme",
"dependencies": {
"@code-hike/mdx": "^0.9.0",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@next/third-parties": "^14.2.15",
"@svgr/webpack": "^8.1.0",
"cuid": "^3.0.0",
"fuse.js": "^7.0.0",
"lodash": "^4.17.21",
"next": "^14.2.15",
"nextra": "2.13.4",
"nextra-theme-docs": "2.13.4",
"node-fetch": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"release-it": "^17.10.0",
"shelljs": "^0.8.5",
"swr": "^2.2.5"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.15",
"@types/lodash": "^4.17.13",
"@types/node": "20.14.11",
"@types/react": "18.3.12",
"@types/react-dom": "^18.3.1",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cypress": "^13.16.1",
"env-cmd": "^10.1.0",
"eslint": "8.57.1",
"eslint-config-next": "^14.2.15",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-security": "^3.0.1",
"husky": "^9.1.7",
"markdown-link-check": "^3.13.6",
"open-graph-scraper": "^6.8.3",
"prettier": "^3.4.2",
"serve": "^14.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"yaml": "^2.6.1"
},
"release-it": {
"github": {
"release": true
}
}
}