-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.6 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
{
"name": "docs-new",
"license": "UNLICENSED",
"scripts": {
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview",
"prepare": "husky install",
"lint": "eslint --fix",
"lint:md": "markdownlint '**/*.md'",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,md,json,css,scss}'",
"import-blobstream": "node importBlobstream.mjs"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.51.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"i": "^0.3.7",
"lint-staged": "^14.0.1",
"markdownlint-cli": "^0.37.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.2.2",
"vitepress": "latest"
},
"dependencies": {
"@apollo/client": "^3.9.9",
"@fortawesome/fontawesome-free": "^6.4.2",
"autoprefixer": "^10.4.18",
"graphql": "^16.8.1",
"graphql-ws": "^5.15.0",
"markdown-it-mathjax3": "^4.3.2",
"moment": "^2.30.1",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"v-tooltip": "^2.1.3",
"vitepress-theme-api": "^0.1.7",
"vue-clipboard2": "^0.3.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint",
"yarn format"
]
},
"*.md": [
"yarn format"
],
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
}
}