-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.14 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.14 KB
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
{
"name": "poker",
"version": "0.0.1",
"description": "Poker Game",
"productName": "Poker",
"author": "~~~~",
"private": true,
"scripts": {
"start": "quasar dev",
"build": "quasar build",
"build:ios": "quasar build -m capacitor -T ios --ide",
"run:ios": "quasar dev -m capacitor -T ios",
"lint": "eslint --ext .js,.vue ./",
"lint:fix": "eslint --ext .js,.vue src --fix",
"cypress": "CYPRESS_BASE_URL=http://localhost:8080 cypress open",
"cypress:run": "CYPRESS_BASE_URL=http://localhost:8080 cypress run --spec test/cypress/e2e/blackjack",
"cypress:prod": "CYPRESS_BASE_URL=https://bjack.space cypress run --spec test/cypress/e2e/blackjack",
"format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
"test:e2e": "cross-env NODE_ENV=test start-test \"quasar dev\" http-get://localhost:9000 \"cypress open --e2e\"",
"test:e2e:ci": "cross-env NODE_ENV=test start-test \"quasar dev\" http-get://localhost:9000 \"cypress run --e2e\"",
"test:component": "cross-env NODE_ENV=test cypress open --component",
"test:component:ci": "cross-env NODE_ENV=test cypress run --component"
},
"dependencies": {
"@capacitor/core": "^2.0.0",
"@quasar/extras": "^1.0.0",
"axios": "^1.6.3",
"gsap": "^3.9.1",
"lodash": "^4.17.21",
"lodash.get": "^4.4.2",
"pinia": "^2.0.11",
"quasar": "^2.14.2",
"uuid": "^9.0.0",
"vue": "^3.4.2",
"vue-i18n": "^9.0.0",
"vue-qr": "^4.0.9",
"vue-router": "^4.0.0"
},
"devDependencies": {
"@intlify/vite-plugin-vue-i18n": "^3.3.1",
"@quasar/app-vite": "^1.0.0",
"@quasar/quasar-app-extension-testing-e2e-cypress": "^5.0.0-beta.11",
"autoprefixer": "^10.4.2",
"cypress": "^12.2.0",
"dotenv": "^16.0.3",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^9.0.0",
"postcss": "^8.4.14",
"prettier": "^2.5.1"
},
"engines": {
"node": "^20 || ^18 || ^16 || ^14.19",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}