forked from InjectiveLabs/injective-helix-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.74 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "injective-helix",
"version": "1.7.0",
"description": "The Premier Decentralized Crypto Exchange",
"license": "Apache-2.0",
"author": "@InjectiveLabs",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"analyze": "nuxt build --analyze",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{vue,css,scss}\" --ignore-path .gitignore .stylelintignore .eslintignore",
"lint": "yarn lint:js && yarn lint:style",
"pretty": "yarn prettier --ignore-path .eslintignore --write .",
"test": "yarn jest",
"coverage": "yarn jest --coverage"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@amplitude/analytics-browser": "^1.2.0",
"@apollo/client": "^3.5.5",
"@chenfengyuan/vue-countdown": "^1.1.5",
"@injectivelabs/contracts": "1.0.66",
"@injectivelabs/exceptions": "1.0.32",
"@injectivelabs/networks": "1.0.52",
"@injectivelabs/referral-consumer": "0.5.7",
"@injectivelabs/sdk-ts": "1.0.280",
"@injectivelabs/sdk-ui-ts": "1.0.378",
"@injectivelabs/token-metadata": "1.0.76",
"@injectivelabs/token-utils": "1.0.48",
"@injectivelabs/ts-types": "1.0.18",
"@injectivelabs/utils": "1.0.45",
"@injectivelabs/wallet-ts": "1.0.268",
"@metamask/detect-provider": "^1.2.0",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/google-gtag": "^1.0.4",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/toast": "^3.3.1",
"@nuxtjs/vendor": "^1.1.7",
"@popperjs/core": "^2.10.2",
"axios": "^0.21.1",
"canvas": "^2.10.1",
"core-js": "^3.10.1",
"date-fns": "^2.21.1",
"deepmerge": "^4.2.2",
"identicon": "^3.1.1",
"js-confetti": "^0.11.0",
"moment": "^2.29.1",
"nuxt": "^2.15.4",
"nuxt-bugsnag": "^4.2.2",
"nuxt-typed-vuex": "^0.2.0",
"portal-vue": "^2.1.7",
"typed-vuex": "^0.2.0",
"v-clipboard": "^2.2.3",
"v-tooltip": "^2.1.3",
"vee-validate": "^3.4.5",
"vue-clickaway": "^2.2.2",
"vue-i18n": "^8.23.0",
"vue-plot": "0.0.7",
"vue-router": "^3.5.1",
"vue-select": "^3.12.2",
"vue-youtube": "^1.4.0",
"vue2-touch-events": "^3.2.2"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^6.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/tailwindcss": "^4.2.1",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.37",
"@types/vue-clickaway": "^2.2.0",
"@types/vue-select": "^3.11.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vue/runtime-dom": "latest",
"@vue/test-utils": "^1.1.4",
"babel-eslint": "^10.1.0",
"copy-webpack-plugin": "6",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.7.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"postcss": "8",
"postcss-html": "^1.4.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"sass": "^1.52.2",
"sass-loader": "^10.1.1",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^21.0.0",
"ts-jest": "^26.5.4",
"ts-loader": "~8.2.0",
"ts-node": "^9.1.1",
"typescript": "^4.7.2",
"vue-jest": "^4.0.0-0"
}
}