-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.45 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
{
"name": "pulsegames.io",
"version": "0.5.1",
"description": "1v1 Competitive Board Games Community Hub",
"productName": "Pulse Games",
"cordovaId": "",
"capacitorId": "",
"author": "Stasi Vladimirov <cmacu.mail@gmail.com>",
"private": true,
"scripts": {
"dev": "API=https://localhost:5001 quasar dev",
"build-stage": "API=https://pulsegames.azurewebsites.net/ quasar build",
"build-prod": "API=https://pulsegames.azurewebsites.net/ quasar build",
"release": "release-it --only-version",
"deploy-prod": "bash deploy-prod.sh",
"deploy-stage": "bash deploy-stage.sh",
"lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore ./",
"test": "echo \"No test specified\" && exit 0"
},
"dependencies": {
"@aspnet/signalr": "^1.1.4",
"@quasar/extras": "^1.9.7",
"@vue/composition-api": "^1.0.0-beta.15",
"axios": "^0.20.0",
"country-list": "^2.2.0",
"dayjs": "^1.9.1",
"direct-vuex": "^0.12.0",
"logrocket": "^1.0.13",
"object-assign-deep": "^0.4.0",
"quasar": "^1.14.1",
"vue-smooth-dnd": "^0.8.1",
"vue-trend-chart": "^0.15.2",
"vuex-persist": "^3.1.3"
},
"devDependencies": {
"@quasar/app": "^2.1.1",
"@types/node": "^14.11.5",
"@types/object-assign-deep": "^0.4.0",
"@types/webpack-env": "^1.15.3",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"auto-changelog": "^2.2.1",
"babel-eslint": "^10.1.0",
"browserslist": "^4.14.5",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-vue": "^7.0.1",
"prettier": "^2.1.2",
"release-it": "^14.0.3",
"typescript": "^4.0.3",
"workbox-webpack-plugin": "^5.1.4"
},
"engines": {
"node": ">= 10.18.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
},
"browserslist": [
"ie >= 11",
"last 10 Chrome versions",
"last 10 Firefox versions",
"last 4 Edge versions",
"last 7 Safari versions",
"last 8 Android versions",
"last 8 ChromeAndroid versions",
"last 8 FirefoxAndroid versions",
"last 10 iOS versions",
"last 5 Opera versions"
],
"release-it": {
"git": {
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template changelog-compact.hbs"
},
"hooks": {
"after:bump": "npx auto-changelog -p --commit-limit false --hide-credit --starting-version 0.1.0"
},
"npm": {
"publish": false
}
}
}