forked from skalenetwork/docs.skale.space
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.63 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
{
"name": "@skalenetwork/docs",
"type": "module",
"version": "1.2.0",
"authors": [
{
"name": "Sawyer Cutler",
"email": "[email protected]",
"url": "https://dirtroad.dev"
},
{
"name": "Manuel Barbas",
"email": "[email protected]",
"url": "https://skale.space"
}
],
"description": "SKALE Network Documentation",
"keywords": [
"skale",
"docs",
"dirtroaddev",
"web3"
],
"funding": {
"type": "Buy Me a Coffee",
"url": "https://www.buymeacoffee.com/thegreataxios"
},
"homepage": "https://docs.skale.dirtroad.dev",
"repository": {
"type": "git",
"url": "https://github.com/skalenetwork/docs.skale.space"
},
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --loglevel warn --write \"**/*.{js,css,md}\"",
"posttest": "npm run format",
"spellcheck": "cspell \"./src/content/**\"",
"lint": "eslint . --cache --fix",
"pretest": "npm run lint",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/react": "^3.6.0",
"@astrojs/starlight": "^0.24.5",
"@astrojs/ts-plugin": "^1.8.0",
"@pagefind/linux-x64": "^1.1.0",
"astro": "^4.11.4",
"ethers": "^6.13.1",
"react-toastify": "^10.0.5",
"sharp": "^0.32.5"
},
"devDependencies": {
"cspell": "^8.0.0",
"eslint": "^8.53.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}