forked from rocket-pool/docs.rocketpool.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.96 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
{
"name": "rocketpool-docs",
"version": "0.9.0",
"description": "Rocket Pool Documentation - Decentralised Ethereum Liquid Staking Protocol",
"main": "index.js",
"type": "module",
"authors": {
"name": "Rocket Pool Protocol",
"email": "[email protected]"
},
"repository": "https://github.com/rocket-pool/docs.rocketpool.net",
"devDependencies": {
"@types/markdown-it": "^13.0.7",
"markdown-it": "^13.0.2",
"stylus": "latest",
"vitepress": "^1.0.0-rc.29",
"vue": "^3.3.8"
},
"scripts": {
"dev": "vitepress dev docs",
"build": "vitepress build docs",
"preview": "vitepress preview docs",
"lint": "eslint --ext .ts,vue --ignore-path .gitignore . --fix",
"format": "prettier -w -u . --ignore-path .gitignore"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"plugin:vue/vue3-recommended",
"eslint:recommended",
"@vue/typescript/recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2021
},
"rules": {
"no-console": "off",
"no-debugger": "off",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": [
"off",
{
"argsIgnorePattern": "^_"
}
],
"prettier/prettier": [
"error",
{},
{
"usePrettierrc": true
}
]
}
},
"prettier": {
"semi": true,
"endOfLine": "lf",
"printWidth": 200,
"tabWidth": 2,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": true,
"singleQuote": false
},
"dependencies": {
"medium-zoom": "^1.1.0"
}
}