-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.58 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.58 KB
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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "create-geodefi",
"private": false,
"version": "1.0.0",
"description": "An UI template to get you started developing beautiful GeoDefi Apps.",
"type": "module",
"author": "0xicebear <admin@geode.fi>",
"license": "MIT",
"bin": {
"create-geodefi": "./bin/create-geodefi.js"
},
"homepage": "https://github.com/Geodefi/create-geodefi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Geodefi/create-geodefi"
},
"bugs": {
"url": "https://github.com/Geodefi/create-geodefi/issues"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "cd template && vite",
"build": "cd template && vite build",
"watch": "cd template && vite build --watch",
"serve": "cd template && serve -s dist",
"preview": "cd template && vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"pretty": "prettier --write \"./**/*.{js,jsx,mjs,cjs,css,ts,tsx,json,vue}\" --ignore-path .gitignore ",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@aacassandra/vue3-progressbar": "^1.0.3",
"@web3-onboard/core": "^2.22.1",
"@web3-onboard/injected-wallets": "^2.11.1",
"axios": "^1.7.2",
"bignumber.js": "^9.1.2",
"ethers": "^6.13.0",
"pinia": "^2.1.7",
"vue": "^3.4.21",
"vue-router": "^4.3.2",
"vue-toastification": "^2.0.0-rc.5",
"web3": "^4.9.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.8.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/github": "^10.0.6",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"prettier": "^3.2.5",
"semantic-release": "^24.0.0",
"serve": "^14.2.3",
"sharp": "^0.33.4",
"svgo": "^3.3.2",
"vite": "^5.2.0",
"vite-plugin-image-optimizer": "^1.1.8",
"vite-plugin-robots": "^1.0.5",
"vite-plugin-vue-devtools": "^7.2.1"
},
"release": {
"branches": [
"main"
],
"repositoryUrl": "https://github.com/Geodefi/create-geodefi",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
{
"path": "template/dist/**"
}
]
}
]
],
"preset": "angular"
}
}