This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
104 lines (104 loc) · 3.03 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
{
"name": "heroes-platform-demo",
"version": "0.2.0",
"description": "Platform demo featuring Super Heroes with Stelace API",
"main": "index.js",
"author": "Stelace (https://stelace.com)",
"license": "MIT",
"private": false,
"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 node scripts/buildTranslationFiles.js",
"deploy:prod": "npm run build && node scripts/deployManuallyToNetlifyProd.js",
"deploy:prod:translations": "cross-env NODE_ENV=production node scripts/deployTranslations.js",
"deploy": "npm run build && netlify deploy --dir=dist/spa",
"deploy:translations": "node scripts/deployTranslations.js",
"seed": "node scripts/init-data.js",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"@quasar/extras": "^1.9.12",
"@sentry/browser": "^6.3.5",
"@sentry/integrations": "^6.4.1",
"axios": "~0.21.1",
"bezier-easing": "^2.1.0",
"lodash": "^4.17.21",
"mapbox-gl": "~2.2.0",
"mapbox-gl-vue": "^2.0.4",
"ms": "^2.1.3",
"photoswipe": "^4.1.3",
"prismjs": "^1.23.0",
"quasar": "^1.14.5",
"sharp-aws-image-handler-client": "https://github.com/stelace/sharp-aws-image-handler-client.git#0.2.0",
"socket.io-client": "~2.3.1",
"stelace": "0.14.0",
"url-parse": "^1.5.1",
"vue-analytics": "5.22.1",
"vue-intl": "3.1.0",
"vue-slicksort": "^1.2.0",
"vue-socket.io-extended": "4.1.0",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.4",
"@quasar/app": "^1.9.6",
"@sentry/webpack-plugin": "^1.14.2",
"babel-eslint": "^10.1.0",
"babel-plugin-lodash": "^3.3.4",
"chalk": "^4.1.1",
"commander": "^7.1.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.3",
"csvtojson": "^2.0.10",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^6.2.2",
"glob": "^7.1.6",
"husky": ">=6.0.0",
"i18n-compile": "^1.1.1",
"lint-staged": ">=10.5.4",
"markdown-it": "^12.0.6",
"p-map": "^4.0.0",
"p-props": "^4.0.0",
"pinst": "^2.1.6",
"preload-webpack-plugin": "^3.0.0-beta.4",
"webfontloader": "^1.6.28"
},
"engines": {
"node": ">= 10.18.0",
"npm": ">= 5.6.0",
"yarn": ">= 1.6.0"
},
"browserslist": [
"> 0.2%",
"last 2 versions",
"ie 11",
"ios 8.4",
"not dead"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
]
}
}