This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
38 lines (38 loc) · 1.55 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
{
"name": "api3-docs",
"version": "0.10.0",
"description": "API3 Developer Documentation.",
"main": "index.js",
"repository": "https://github.com/api3dao/api3-docs",
"author": "API3 DAO",
"license": "MIT",
"engines": {
"node": "^14"
},
"scripts": {
"sync:404": "cp docs/.vuepress/components/Sub404.vue node_modules/@vuepress/theme-default/layouts/404.vue",
"sync:navbar": "cp docs/.vuepress/components/Navbar.vue node_modules/@vuepress/theme-default/components/Navbar.vue",
"sync:page": "cp libs/Page.vue node_modules/@vuepress/theme-default/components/Page.vue",
"sync:sidebar": "cp docs/.vuepress/components/Sidebar.vue node_modules/@vuepress/theme-default/components/Sidebar.vue",
"docs:dev": "yarn sync:404; yarn sync:navbar; yarn sync:page; yarn sync:sidebar; vuepress dev docs",
"docs:build": "yarn sync:404; yarn sync:navbar; yarn sync:page; yarn sync:sidebar; vuepress build docs;",
"format": "prettier --write --cache \"./**/*.{js,vue,md,json,yaml}\" --loglevel silent",
"format:check": "prettier --check --cache \"./**/*.{js,vue,md,json,yaml}\"",
"prepare": "husky install"
},
"devDependencies": {
"@vuepress/plugin-back-to-top": "^1.9.7",
"axios": "^0.24.0",
"colors": "^1.4.0",
"file": "^0.2.2",
"husky": "^7.0.4",
"jszip": "^3.7.1",
"oust": "^1.2.0",
"prettier": "^2.8.1",
"v-click-outside": "^3.1.2",
"vuepress": "^1.9.7",
"vuepress-plugin-dehydrate": "^1.1.5",
"vuepress-plugin-element-tabs": "^0.2.8",
"vuepress-plugin-table-of-contents": "^1.1.7"
}
}