forked from kodadot/nft-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
197 lines (197 loc) · 6.52 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
{
"homepage": "https://kodadot.xyz",
"repository": {
"type": "git",
"url": "https://github.com/npm/cli.git"
},
"bugs": {
"url": "https://github.com/kodadot/nft-gallery/issues"
},
"description": "Open Source NFT marketplace developed as public good",
"keywords": [
"nft",
"marketplace",
"open source",
"public good"
],
"license": "MIT",
"name": "kodadot-nft-marketplace",
"version": "3.0.0",
"private": true,
"scripts": {
"dev": "nuxi prepare && cross-env NODE_OPTIONS=--openssl-legacy-provider PORT=9090 nuxi dev",
"dev-docker": "npx nuxi dev",
"dev-experimental": "nuxi dev --hostname localhost --port 9090",
"build": "nuxi build --modern",
"locales:check": "node ./script/checkLocale.mjs",
"start": "nuxi preview",
"start:static": "npx --yes [email protected] -L -l 9090 -s dist",
"generate:pnpm": "npx pnpm@latest-8 i --store=node_modules/.pnpm-store && npx pnpm@latest-8 generate",
"generate": "node ./script/substack.mjs && cross-env NODE_OPTIONS=--openssl-legacy-provider NITRO_PRESET=netlify nuxi generate",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.vue .",
"lint:quiet": "eslint --quiet --ignore-path .gitignore --ext .js,.ts,.vue .",
"lint:fix": "eslint --fix --quiet --ignore-path .gitignore --ext .js,.ts,.vue .",
"test": "vitest run --reporter verbose --allowOnly",
"test:e2e": "cypress run -q --project tests",
"test:e2e-gui": "cypress open --project tests",
"test:watch": "vitest --reporter verbose",
"test:coverage": "vitest run --coverage",
"prepare": "pnpm -F static build && nuxi prepare && husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix",
"prettier --write"
]
},
"engines": {
"npm": "please-use-pnpm",
"pnpm": "8",
"node": "^18"
},
"prettier": {
"semi": false,
"bracketSameLine": true,
"singleQuote": true
},
"packageManager": "[email protected]",
"dependencies": {
"@chenfengyuan/vue-qrcode": "1",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/vue-fontawesome": "^2.0.10",
"@google/model-viewer": "^1.12.1",
"@kodadot1/brick": "workspace:*",
"@kodadot1/minimark": "^0.1.9",
"@kodadot1/static": "workspace:*",
"@kodadot1/sub-api": "^0.1.2",
"@kodadot1/vuex-options": "0.1.5",
"@nuxtjs/apollo": "^4.0.1-rc.5",
"@nuxtjs/i18n": "^7.3.1",
"@nuxtjs/sentry": "^7.3.0",
"@nuxtjs/sitemap": "thisismydesign/sitemap-module#cd4dc22293b9b67e8ebb5b3c49840e67c108e312",
"@oruga-ui/oruga": "^0.6.0",
"@paraspell/sdk": "^1.1.9",
"@pinia/nuxt": "^0.4.11",
"@polkadot/api": "^10.6.1",
"@polkadot/api-base": "^10.6.1",
"@polkadot/apps-config": "^0.130.1",
"@polkadot/extension-dapp": "^0.46.2",
"@polkadot/extension-inject": "^0.46.2",
"@polkadot/types": "^10.6.1",
"@polkadot/ui-keyring": "^3.3.1",
"@polkadot/vue-identicon": "^3.3.1",
"@ramp-network/ramp-instant-sdk": "^3.2.3",
"@sentry/browser": "7.42.0",
"@sgratzl/chartjs-chart-boxplot": "^3.10.0",
"apollo-boost": "^0.4.9",
"axios": "^0.27.2",
"buefy": "^0.9.23",
"chart.js": "^3.9.1",
"chartjs-adapter-date-fns": "^2.0.1",
"chartjs-plugin-annotation": "^2.2.1",
"chartjs-plugin-zoom": "^1.2.1",
"css-loader": "5.2.7",
"date-fns": "^2.30.0",
"emoji-unicode": "^2.0.1",
"graphql": "^16.6.0",
"graphql-ws": "^5.13.1",
"highlight.js": "^11.8.0",
"keen-slider": "^6.8.5",
"lazysizes": "^5.3.2",
"lodash": "^4.17.21",
"mingo": "^5.1.0",
"nuxt-buefy": "^0.4.25",
"nuxt-edge": "2.16.0-27720022.54e852f",
"nuxt-property-decorator": "^2.9.1",
"ohmyfetch": "^0.4.21",
"pinia-plugin-persistedstate": "^3.1.0",
"setimmediate": "^1.0.5",
"slugify": "^1.6.6",
"unzipit": "^1.4.3",
"v-emoji-picker": "^2.3.3",
"vue": "2.7.14",
"vue-apollo": "^3.1.0",
"vue-audio-visual": "2.5.0",
"vue-class-component": "^7.2.6",
"vue-clipboard2": "^0.3.3",
"vue-infinite-loading": "^2.4.5",
"vue-markdown-render": "^1.1.3",
"vue-social-sharing": "^3.0.9",
"vue-tippy": "^4.16.1",
"vuex": "3.6.2",
"workbox-window": "^6.6.0"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/helper-define-map": "^7.18.6",
"@babel/helper-regex": "^7.10.5",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@kevinmarrec/nuxt-pwa": "0.15.0",
"@nuxt/bridge": "npm:@nuxt/[email protected]",
"@nuxt/test-utils": "^0.2.2",
"@nuxt/types": "^2.17.0",
"@nuxtjs/color-mode": "^3.2.0",
"@open-wc/webpack-import-meta-loader": "^0.4.7",
"@rollup/plugin-graphql": "^1.1.0",
"@sentry/webpack-plugin": "^1.20.1",
"@types/jest": "^27.5.2",
"@types/markdown-it": "^12.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vue/test-utils": "^1.3.6",
"@vueuse/core": "^9.13.0",
"@vueuse/nuxt": "^9.13.0",
"all-contributors-cli": "^6.26.0",
"c8": "^7.14.0",
"consola": "^3.1.0",
"cross-env": "^7.0.3",
"cypress": "^12.14.0",
"cypress-file-upload": "^5.0.8",
"cypress-network-idle": "^1.14.2",
"cypress-real-events": "^1.8.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^42.0.0",
"eslint-plugin-vue": "^8.7.1",
"glob": "^8.1.0",
"graphql-tag": "^2.12.6",
"husky": "^7.0.4",
"jsdom": "^19.0.0",
"lint-staged": "^12.5.0",
"prettier": "^2.8.8",
"raw-loader": "^4.0.2",
"sass": "^1.63.4",
"sass-loader": "^10.4.1",
"typescript": "^4.9.5",
"vite-plugin-vue2": "^2.0.3",
"vitest": "^0.32.0",
"vue-debounce-decorator": "^1.0.1",
"vue-eslint-parser": "^9.3.1",
"vue-gtag": "^2.0.1",
"wait-on": "^6.0.1"
},
"pnpm": {
"overrides": {
"@apollo/federation": "0.38.1",
"vue-server-renderer": "2.7.14",
"vue-template-compiler": "2.7.14",
"h3": "1.1.0"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"@nuxt/[email protected]": "patches/@[email protected]"
}
}
}