-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
77 lines (77 loc) · 2.69 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
70
71
72
73
74
75
76
77
{
"name": "artion-client-v2",
"version": "0.0.1",
"scripts": {
"serve": "vue-cli-service serve --mode development",
"serve.pg": "VUE_APP_FANTOM_MODULE=pg vue-cli-service serve --mode development",
"serve.production": "vue-cli-service serve --mode production",
"build": "vue-cli-service build",
"build.pg": "VUE_APP_FANTOM_MODULE=pg vue-cli-service build",
"lint": "vue-cli-service lint",
"lint-ci": "vue-cli-service lint --no-fix --max-warnings 0",
"test": "jest",
"test:watch": "jest --watch",
"test:updatesnapshots": "jest -u"
},
"dependencies": {
"@metamask/detect-provider": "^1.2.0",
"@walletconnect/universal-provider": "^2.8.0",
"@web3modal/standalone": "^2.4.3",
"apexcharts": "^3.30.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-context": "^1.0.20",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "^1.5.17",
"apollo-link-retry": "^2.2.16",
"apollo-link-ws": "^1.0.20",
"core-js": "^3.6.5",
"dayjs": "^1.10.7",
"fantom-vue-components": "^0.51.1",
"graphql": "^15.5.3",
"graphql-tag": "^2.12.5",
"jazzicon": "github:Fantom-foundation/jazzicon",
"nanoid": "^3.1.25",
"portal-vue": "^2.1.7",
"register-service-worker": "^1.7.2",
"vue": "^2.6.14",
"vue-apexcharts": "^1.6.2",
"vue-apollo": "^3.0.7",
"vue-i18n": "^8.25.0",
"vue-router": "^3.5.2",
"vuex": "^3.6.2",
"vuex-persist": "^3.1.3",
"walletlink": "^2.1.11",
"web3": "^1.5.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.13",
"@vue/cli-plugin-eslint": "^3.1.1",
"@vue/cli-plugin-pwa": "~4.5.13",
"@vue/cli-plugin-router": "~4.5.13",
"@vue/cli-plugin-unit-jest": "^4.5.13",
"@vue/cli-plugin-unit-mocha": "^4.5.13",
"@vue/cli-plugin-vuex": "~4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.2.2",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^10.5.4",
"prettier": "^1.19.1",
"sass": "^1.39.2",
"sass-loader": "^10.1.1",
"vue-template-compiler": "^2.6.14"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"prettier --write",
"git add"
]
}
}