forked from vbarda/VitaDAO-web3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.09 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
{
"name": "vita-dao",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vue-cli-service serve --mode mainnet",
"rinkeby": "vue-cli-service serve --mode rinkeby",
"build": "NODE_ENV=production vue-cli-service build --mode mainnet",
"build:rinkeby": "NODE_ENV=production vue-cli-service build --mode rinkeby",
"test:e2e": "vue-cli-service test:e2e --mode rinkeby",
"lint": "vue-cli-service lint",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.4.4",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/vue-fontawesome": "^3.0.0-4",
"@headlessui/vue": "^1.3.0",
"@heroicons/vue": "^1.0.2",
"@tailwindcss/typography": "^0.4.1",
"@tweenjs/tween.js": "^18.6.4",
"@vue/apollo-composable": "^4.0.0-alpha.14",
"@walletconnect/web3-provider": "^1.6.4",
"core-js": "^3.6.5",
"dayjs": "^1.10.6",
"ethers": "^5.4.1",
"graphql": "^15.5.1",
"graphql-tag": "^2.12.5",
"markdown-it": "^12.2.0",
"vue": "^3.0.0",
"vue-router": "4",
"vue-toastification": "^2.0.0-rc.1",
"vue3-jazzicon": "^0.1.2",
"vuex": "^4.0.0-0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.3.3",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-e2e-cypress": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-prettier": "^6.0.0",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"cypress": "^8.2.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.0.0",
"husky": ">=6",
"lint-staged": "^10.5.4",
"postcss": "^7.0.36",
"prettier": "^2.2.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.7"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint"
]
}
}