-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 1.29 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": "documentation-tools",
"private": true,
"type": "module",
"scripts": {
"dev": "npm run tailwind:build && vitepress dev",
"build": "npm run tailwind:build && vitepress build",
"preview": "vitepress preview",
"check-format": "prettier --ignore-path .gitignore --check .",
"format": "prettier --ignore-path .gitignore --write .",
"tailwind:build": "npx tailwindcss -i ./components/input.css -o .vitepress/theme/tailwind-output.css",
"tailwind:watch": "npm run tailwind:build -- --watch"
},
"devDependencies": {
"@iconify/vue": "^4.1.2",
"@shikijs/vitepress-twoslash": "^1.22.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.4",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-components": "^0.27.4",
"vitepress": "^1.4.1"
},
"dependencies": {
"@iexec/dataprotector": "^2.0.0-beta.12",
"@iexec/dataprotector-deserializer": "^0.1.1",
"@iexec/iexec-oracle-factory-wrapper": "^2.5.0",
"@iexec/web3mail": "^1.1.1",
"@reown/appkit": "^1.6.5",
"@reown/appkit-adapter-wagmi": "^1.6.5",
"@tanstack/vue-query": "^5.64.2",
"@wagmi/vue": "^0.1.8",
"dotenv": "^16.4.5",
"viem": "^2.22.12",
"vitepress-plugin-google-analytics": "^1.0.2",
"vue": "^3.5.12"
}
}