-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.81 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
{
"name": "picasso-exchange",
"version": "0.0.1",
"description": "Decentralized Derivatives Trading. Any Market. Anytime. Anywhere.",
"author": "Bojan Angjelkoski <bojan@injectiveprotocol.com>",
"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",
"prettier": "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": {
"@chenfengyuan/vue-countdown": "^1.1.5",
"@injectivelabs/alchemy-api": "^0.0.5",
"@injectivelabs/chain-consumer": "^0.0.83",
"@injectivelabs/contracts": "^0.0.76",
"@injectivelabs/derivatives-consumer": "^0.0.62",
"@injectivelabs/exceptions": "^0.0.29",
"@injectivelabs/exchange-consumer": "^0.0.98",
"@injectivelabs/networks": "^0.0.47",
"@injectivelabs/spot-consumer": "^0.0.73",
"@injectivelabs/subaccount-consumer": "^0.0.44",
"@injectivelabs/token-metadata": "^0.0.21",
"@injectivelabs/utils": "^0.0.38",
"@injectivelabs/web3-strategy": "^0.0.69",
"@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",
"axios": "^0.21.1",
"canvas-confetti": "^1.4.0",
"coingecko-api": "^1.0.10",
"core-js": "^3.10.1",
"date-fns": "^2.21.1",
"deepmerge": "^4.2.2",
"emailjs-com": "^3.2.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",
"postcss": "^8.2.10",
"tailwindcss-border-gradients": "^2.0.3",
"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-router": "^3.5.1",
"vue-select": "^3.11.2",
"vue2-touch-events": "^3.2.2"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@injectivelabs/ts-types": "^0.0.25",
"@nuxt/types": "^2.15.6",
"@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/coingecko-api": "^1.0.1",
"@types/jquery": "^3.5.6",
"@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/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",
"node-sass": "^6.0.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.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.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"vue-jest": "^4.0.0-0"
}
}