-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
114 lines (114 loc) · 3.48 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
{
"name": "app-like-co",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "IS_TESTNET=TRUE nuxt",
"build": "nuxt build",
"generate": "nuxt generate",
"start": "nuxt start",
"storybook": "nuxt storybook",
"lint:js": "eslint --ext \".js,.vue,.ts\" --ignore-path .gitignore . server",
"lint:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore",
"lint": "yarn lint:js && yarn lint:style",
"test": "jest"
},
"dependencies": {
"@bundlr-network/client": "^0.11.17",
"@cosmjs/proto-signing": "^0.30.1",
"@cosmjs/stargate": "^0.30.1",
"@keplr-wallet/types": "^0.11.4",
"@likecoin/iscn-js": "^0.6.10",
"@likecoin/iscn-message-types": "^0.0.7",
"@likecoin/wallet-connector": "^0.26.7",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/i18n": "^7.0.1",
"@nuxtjs/sentry": "^8.0.7",
"@nuxtjs/sitemap": "^2.4.0",
"@pdf-lib/fontkit": "^1.1.1",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@walletconnect/browser-utils": "^1.8.0",
"@walletconnect/client": "^1.6.6",
"@walletconnect/qrcode-modal": "^1.6.6",
"@walletconnect/utils": "^1.6.6",
"axios": "^1.7.4",
"bignumber.js": "^9.0.1",
"cheerio": "^1.0.0-rc.11",
"core-js": "^3.15.1",
"cosmjs-types": "^0.8.0",
"easyqrcodejs": "^4.4.6",
"epubjs": "^0.3.93",
"exifr": "^7.1.2",
"express": "^4.20.0",
"fast-json-stable-stringify": "^2.1.0",
"form-data": "^4.0.0",
"image-type": "^4.1.0",
"ipfs-only-hash": "^4.0.0",
"jszip": "^3.10.1",
"jwt-decode": "^4.0.0",
"lodash.chunk": "^4.2.0",
"lodash.debounce": "^4.0.8",
"mime-types": "^2.1.34",
"multer": "^1.4.2",
"nuxt": "2.17.2",
"p5": "^1.4.0",
"pdf-lib": "^1.17.1",
"portal-vue": "2.1.7",
"puppeteer": "^16.2.0",
"puppeteer-extra": "^3.3.4",
"puppeteer-extra-plugin-anonymize-ua": "^2.4.4",
"puppeteer-extra-plugin-stealth": "^2.11.1",
"qrcode": "^1.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^8.3.2",
"vue": "2.7.16",
"vue-class-component": "^7.2.6",
"vue-gtag": "^1.16.1",
"vue-property-decorator": "^9.1.2",
"vue-server-renderer": "2.7.16",
"vue-template-compiler": "2.7.16",
"vuex": "3",
"vuex-class": "^0.3.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@nuxt/types": "2.17.1",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/storybook": "^4.1.1",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/tailwindcss": "^5.3.5",
"@sentry/webpack-plugin": "2",
"@types/lodash.chunk": "^4.2.6",
"@types/lodash.debounce": "^4.0.6",
"@types/mime-types": "^2.1.1",
"@types/multer": "^1.4.7",
"@types/p5": "^1.3.0",
"@types/qrcode": "^1.5.5",
"@types/uuid": "^8.3.1",
"@vue/test-utils": "^1.2.1",
"@vue/vue2-jest": "^27.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.0.5",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.12.1",
"jest": "^27.0.5",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"vuex-module-decorators": "^1.0.1"
}
}