forked from likecoin/app-like-co
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.04 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
{
"name": "app-like-co",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=16"
},
"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": {
"@cosmjs/stargate": "^0.28.4",
"@ipld/car": "^4.1.6",
"@keplr-wallet/types": "^0.11.4",
"@likecoin/iscn-js": "^0.3.0",
"@likecoin/iscn-message-types": "^0.0.3",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/i18n": "^7.0.1",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sentry": "^5.1.6",
"@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",
"arweave": "^1.10.16",
"axios": "^0.21.4",
"bignumber.js": "^9.0.1",
"cheerio": "^1.0.0-rc.11",
"core-js": "^3.15.1",
"cosmjs-types": "^0.5.0",
"easyqrcodejs": "^4.4.6",
"exifr": "^7.1.2",
"express": "^4.17.1",
"fast-json-stable-stringify": "^2.1.0",
"form-data": "^4.0.0",
"image-type": "^4.1.0",
"ipfs-http-client": "^56",
"ipfs-only-hash": "^4.0.0",
"lodash.chunk": "^4.2.0",
"lodash.debounce": "^4.0.8",
"multer": "^1.4.2",
"nuxt": "^2.15.7",
"p5": "^1.4.0",
"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",
"tailwindcss": "^2.2.16",
"uuid": "^8.3.2",
"vue-class-component": "^7.2.6",
"vue-gtag": "^1.16.1",
"vue-property-decorator": "^9.1.2",
"vuex-class": "^0.3.2",
"web3.storage": "^4.4.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@nuxt/types": "^2.15.7",
"@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": "^4.2.0",
"@types/lodash.chunk": "^4.2.6",
"@types/lodash.debounce": "^4.0.6",
"@types/multer": "^1.4.7",
"@types/p5": "^1.3.0",
"@types/uuid": "^8.3.1",
"@vue/test-utils": "^1.2.1",
"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",
"vue-jest": "^3.0.4",
"vuex-module-decorators": "^1.0.1"
}
}