-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
131 lines (131 loc) · 4.92 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
{
"name": "likecoin-store",
"version": "1.0.0",
"engines": {
"node": ">=18"
},
"license": "GPL-3.0",
"description": "Nuxt.js project",
"author": "William Chong <[email protected]>",
"private": true,
"scripts": {
"dev": "npm run dev:docker:api:dev && npm run dev:frontend",
"dev:docker:api:dev": "npm --prefix ./server/api run dev:docker:api",
"dev:docker:api:test": "npm --prefix ./server/api run dev:docker:test",
"dev:docker:api:test:stop": "npm --prefix ./server/api run dev:docker:test:stop",
"dev:frontend": "cross-env IS_TESTNET=TRUE cross-env EXTERNAL_HOSTNAME='localhost:3000' backpack dev",
"build": "nuxt build && backpack build",
"build:testnet": "IS_TESTNET=TRUE nuxt build && npm run build:testnet:server",
"build:testnet:server": "IS_TESTNET=TRUE backpack build",
"start": "cross-env NODE_ENV=production node build/main.js",
"start:testnet": "IS_TESTNET=TRUE NODE_ENV=production node build/main.js",
"precommit": "npm run lint",
"lint": "npm run lint:es && npm run lint:style",
"lint:es": "eslint --ext .js,.vue .",
"lint:style": "stylelint -i .gitignore '**/*.{scss,vue}'",
"fix:style": "stylelint -i .gitignore --fix '**/*.{scss,vue}'",
"prepare": "cd node_modules/web3-core-requestmanager/src && sed -i.bak \"/var global = Function('return this')();/d\" givenProvider.js && rm givenProvider.js.bak",
"test": "npm run dev:docker:api:test && CI=true npm run build:testnet && IS_STANDALONE_TEST=TRUE CI=true IS_TESTNET=TRUE npm run test:e2e; npm run dev:docker:api:test:stop",
"test:nuxt": "ava -v test/nuxt/nuxt.test.js",
"test:e2e": "./node_modules/.bin/nightwatch --config test/e2e/nightwatch.conf.js",
"test:e2e:about": "./node_modules/.bin/nightwatch -c test/e2e/nightwatch.conf.js -g about.js",
"test:e2e:tx": "./node_modules/.bin/nightwatch -c test/e2e/nightwatch.conf.js -g tx.js",
"test:e2e:user": "./node_modules/.bin/nightwatch -c test/e2e/nightwatch.conf.js -g user.js",
"test:e2e:mission": "./node_modules/.bin/nightwatch -c test/e2e/nightwatch.conf.js -g mission.js",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"ava": {
"require": [
"./test/_register"
]
},
"dependencies": {
"@cosmjs/stargate": "^0.28.7",
"@likecoin/abi-decoder": "^3.0.0",
"@likecoin/authcore-js": "0.3.0-like.0",
"@likecoin/iscn-js": "0.3.0",
"@likecoin/secretd-js": "^0.4.4",
"@likecoin/ui-vue": "^0.7.1",
"@likecoin/vue-image-lightbox": "^5.5.4",
"@likecoin/vue-simple-svg": "^1.4.1",
"@likecoin/wallet-connector": "^0.26.7",
"@nuxtjs/sentry": "^8.0.7",
"@nuxtjs/sitemap": "^2.4.0",
"@walletconnect/browser-utils": "^1.7.8",
"@walletconnect/client": "^1.7.7",
"@walletconnect/utils": "^1.7.7",
"axios": "^0.28.0",
"bech32": "^1.1.4",
"bignumber.js": "^9.0.0",
"bn.js": "^4.11.8",
"classlist-polyfill": "^1.2.0",
"cookie-parser": "^1.4.3",
"core-js": "^2.5.5",
"cosmjs-types": "^0.5.0",
"cross-env": "^5.1.4",
"date-fns": "^1.29.0",
"easyqrcodejs": "^4.4.10",
"express": "^4.21.0",
"fast-json-stable-stringify": "^2.1.0",
"gsap": "^3.0.4",
"helmet": "^3.21.2",
"http-proxy-middleware": "^2.0.1",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"mime-types": "^2.1.34",
"node-fetch": "^2.6.7",
"nuxt": "2.17.1",
"on-headers": "^1.0.2",
"portal-vue": "^1.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"resize-observer": "^1.0.0",
"source-map-support": "^0.5.4",
"swiper": "^4.5.0",
"tiny-cookie": "^2.3.1",
"url-parse": "^1.5.9",
"uuid": "^3.2.1",
"vue-clipboard2": "^0.2.1",
"vue-cookie": "^1.1.4",
"vue-gtag": "^1.16.1",
"vue-i18n": "^8.0.0",
"vue-js-modal": "^2.0.1",
"vue-lazyload": "^1.2.3",
"vue-material": "^1.0.0-beta-7",
"vue-scroll": "^2.1.9",
"vue-scroll-reveal": "^1.0.8",
"vue-vimeo-player": "0.0.9",
"vuedraggable": "^2.18.1",
"vuex": "^3.1.3",
"web3": "^1.2.10"
},
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@babel/register": "^7.0.0",
"@sentry/webpack-plugin": "^2.22.4",
"ava": "^1.0.1",
"axiosist": "^0.1.0",
"babel-eslint": "^10.0.1",
"backpack-core": "^0.8.3",
"chromedriver": "^94.0.0",
"eslint": "^5.11.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-nuxt": "^0.3.0",
"eslint-plugin-vue": "^5.1.0",
"extract-css-chunks-webpack-plugin": "^4.8.0",
"jsonwebtoken": "^9.0.0",
"lodash.clonedeep": "^4.5.0",
"nightwatch": "^1.1.13",
"node-sass": "^7.0.0",
"nyc": "^13.1.0",
"sass-loader": "^10.3.1",
"stylelint": "^13.0.0",
"stylelint-config-recommended-scss": "^4.0.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.0.0",
"webpack": "^4.36.0"
}
}