forked from likecoin/like-co
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 4.82 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
{
"name": "likecoin-store",
"version": "1.0.0",
"license": "GPL-3.0",
"description": "Nuxt.js project",
"author": "William Chong <[email protected]>",
"private": true,
"scripts": {
"dev": "IS_TESTNET=TRUE backpack dev",
"dev:stub": "node ./test/runner",
"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}'",
"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 test:stub",
"test:stub": "IS_STANDALONE_TEST=TRUE node ./test/runner",
"test:api": "nyc ava -v test/api/*.test.js",
"test:api:user": "ava -v test/api/user.test.js",
"test:api:payment": "ava -v test/api/payment.test.js",
"test:api:mission": "ava -v test/api/mission.test.js",
"test:api:oembed": "ava -v test/api/oembed.test.js",
"test:api:social": "ava -v test/api/social.test.js",
"test:api:misc": "ava -v test/api/misc.test.js",
"test:nuxt": "ava -v test/nuxt/nuxt.test.js",
"test:e2e": "nyc ./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": {
"@google-cloud/pubsub": "^0.19.0",
"@likecoin/abi-decoder": "^2.0.0",
"@likecoin/likecoin-email-templates": "^1.0.2",
"@likecoin/vue-image-lightbox": "^5.5.4",
"@nuxtjs/google-tag-manager": "^2.0.0",
"@nuxtjs/sentry": "^2.0.0",
"aws-sdk": "^2.224.1",
"axios": "^0.18.0",
"bignumber.js": "^7.2.1",
"body-parser": "^1.18.2",
"classlist-polyfill": "^1.2.0",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"core-js": "^2.5.5",
"cors": "^2.8.4",
"cross-env": "^5.1.4",
"disposable-email-domains": "^1.0.39",
"eth-sig-util": "^1.4.2",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"express-rate-limit": "^3.1.0",
"firebase": "^5.5.2",
"firebase-admin": "^6.0.0",
"form-data": "^2.3.2",
"i18n": "^0.8.3",
"image-type": "^3.0.0",
"js-sha256": "^0.9.0",
"jsonwebtoken": "^8.2.1",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"moment": "^2.22.1",
"multer": "^1.3.0",
"nuxt": "^2.3.0",
"oauth-1.0a": "^2.2.4",
"portal-vue": "^1.3.0",
"sharp": "^0.20.0",
"source-map-support": "^0.5.4",
"url-parse": "^1.4.3",
"uuid": "^3.2.1",
"vue": "^2.5.17",
"vue-awesome-swiper": "^3.1.3",
"vue-clipboard2": "^0.2.1",
"vue-cookie": "^1.1.4",
"vue-i18n": "^8.0.0",
"vue-intercom": "^1.0.12",
"vue-lazyload": "^1.2.3",
"vue-material": "^1.0.0-beta-7",
"vue-scroll-reveal": "^1.0.8",
"vue-server-renderer": "^2.5.17",
"vue-simple-svg": "^1.3.2",
"vue-template-compiler": "^2.5.17",
"vue-vimeo-player": "0.0.9",
"vuedraggable": "^2.16.0",
"vuex": "^3.0.1",
"web3": "^1.0.0-beta.34",
"web3-provider-engine": "^14.0.5",
"xml": "^1.0.1"
},
"devDependencies": {
"@sentry/webpack-plugin": "^1.5.2",
"ava": "^0.25.0",
"axiosist": "^0.1.0",
"babel-eslint": "^9.0.0",
"babel-register": "^6.26.0",
"backpack-core": "^0.7.0",
"chromedriver": "^2.37.0",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-vue": "^4.5.0",
"hard-source-webpack-plugin": "^0.12.0",
"lodash.clonedeep": "^4.5.0",
"nightwatch": "^0.9.20",
"node-sass": "^4.8.3",
"nyc": "^12.0.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"sass-loader": "^7.0.1",
"selenium-server": "^3.11.0",
"stylelint": "^9.3.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-order": "^1.0.0",
"stylelint-scss": "^3.1.3",
"webpack": "^3.11.0"
}
}