This repository has been archived by the owner on Nov 6, 2019. It is now read-only.
forked from stelace/marketplace-demo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 2.77 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
{
"name": "Workingoo",
"version": "0.1.0",
"description": "Marketplace powered by Stelace API and Vue.js",
"productName": "Workingoo",
"homepage": "https://www.workingoo.com",
"author": "Stelace (https://stelace.com)",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.vue src",
"test": "echo \"No test specified\" && exit 0",
"build": "quasar build",
"dev": "quasar dev",
"translate": "node scripts/buildTranslationFiles.js",
"translate:prod": "cross-env NODE_ENV=production npm run translate",
"deploy": "npm run build && netlify deploy --dir=dist/spa",
"deploy:prod": "npm run build && node scripts/deployManuallyToNetlifyProd.js",
"deploy:translations": "node scripts/deployTranslations.js",
"deploy:translations:prod": "cross-env NODE_ENV=production node scripts/deployTranslations.js",
"seed": "node scripts/init-data.js"
},
"dependencies": {
"@quasar/extras": "^1.2.0",
"@sentry/browser": "^5.6.0",
"@sentry/integrations": "^5.6.0",
"axios": "~0.19.0",
"csvtojson": "^2.0.10",
"geolib": "^3.0.4",
"intl-messageformat-parser": "^2.1.3",
"lodash": "^4.17.11",
"mapbox-gl": "~1.2.0",
"mapbox-gl-vue": "^1.9.0",
"ms": "^2.1.1",
"p-map": "^2.1.0",
"p-props": "^3.0.1",
"photoswipe": "^4.1.3",
"quasar": "~1.0.4",
"sharp-aws-image-handler-client": "https://github.com/stelace/sharp-aws-image-handler-client.git#0.2.0",
"socket.io-client": "~2.2.0",
"stelace": "0.8.0",
"stripe": "^6.25.1",
"url-parse": "^1.4.4",
"vue-analytics": "5.17.0",
"vue-intl": "3.1.0",
"vue-slicksort": "^1.1.3",
"vue-socket.io-extended": "3.2.1",
"vue-tel-input": "2.0.21",
"vuelidate": "^0.7.4",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/preset-env": "^7.3.4",
"@quasar/app": "^1.0.4",
"@sentry/webpack-plugin": "^1.6.2",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-lodash": "^3.3.4",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"copy-webpack-plugin": "^5.0.2",
"cross-env": "^5.2.0",
"dotenv": "^6.2.0",
"eslint": "^5.10.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^5.0.0",
"glob": "^7.1.4",
"husky": ">=1",
"i18n-compile": "^1.1.1",
"inquirer": "^6.4.1",
"lint-staged": ">=8",
"markdown-it": "^8.4.2",
"webfontloader": "^1.6.28"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.6.0",
"yarn": ">= 1.6.0"
},
"browserslist": [
"> 0.2%",
"last 2 versions",
"ie 11",
"not dead"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
]
}
}