This repository has been archived by the owner on Jan 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.9 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
{
"name": "shopozor-consumer-frontend",
"version": "1.0.0",
"description": "Consumer interface to the Shopozor",
"productName": "Shopozor",
"cordovaId": "org.cordova.quasar.app",
"author": "Softozor",
"private": true,
"scripts": {
"build": "quasar build",
"cypress:open:dev": "cross-env CYPRESS_baseUrl=http://localhost:4000/# NODE_ENV=development cypress open",
"cypress:open": "cross-env CYPRESS_baseUrl=http://localhost:4000/# cypress open",
"cypress:integration": "wait-on http://localhost:4000 && cross-env CYPRESS_baseUrl=http://localhost:4000/# cypress run --env configFile=integration",
"cypress:integration:dev": "yarn cypress:integration",
"cypress:e2e": "wait-on http://localhost:4000 && cross-env CYPRESS_baseUrl=http://localhost:4000/# cypress run --env configFile=e2e",
"start:integration": "concurrently \"yarn cypress:integration\" --kill-others \"yarn start\" --success first",
"start:integration:dev": "concurrently \"yarn cypress:integration:dev\" --kill-others \"yarn start:dev\" --success first",
"start:e2e": "concurrently \"yarn cypress:e2e\" --kill-others \"yarn start\" --success first",
"lint": "eslint --ext .js,.vue src",
"start": "quasar serve dist/spa -H '0.0.0.0' -p 4000",
"start:dev": "quasar dev",
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
"test:unit:ci": "jest --updateSnapshot --ci --reporters=default --reporters=jest-junit",
"test:unit": "jest --updateSnapshot",
"test:unit:coverage": "jest --coverage",
"test:unit:watch": "jest --watch",
"test:unit:watchAll": "jest --watchAll",
"serve:test:coverage": "quasar serve test/jest/coverage/lcov-report/ --port 8788",
"concurrently:dev:jest": "concurrently \"quasar dev\" \"jest --watch\"",
"test:unit:ui": "majestic --port 4001"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
},
"jest-junit": {
"outputDirectory": "./junit-reports",
"outputName": "junit.xml"
},
"dependencies": {
"@quasar/extras": "^1.3.2",
"animate.css": "^3.7.2",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-http": "^1.5.16",
"google-translate-api": "^2.3.0",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"leaflet": "^1.5.1",
"node-fetch": "^2.6.0",
"quasar": "^1.1.6",
"sinon": "^7.5.0",
"vue-apollo": "^3.0.0-rc.6",
"vue-i18n": "^8.14.1",
"vue-simple-calendar": "^4.2.2",
"vue2-google-maps": "^0.10.7",
"vue2-leaflet": "^2.2.1",
"vuelidate": "^0.7.4"
},
"devDependencies": {
"@babel/runtime-corejs2": "^7.6.2",
"@cypress/webpack-preprocessor": "^4.1.0",
"@quasar/app": "^1.1.2",
"@quasar/cli": "^1.0.0",
"@quasar/quasar-app-extension-testing": "^1.0.0",
"@quasar/quasar-app-extension-testing-unit-jest": "^1.0.0",
"babel-eslint": "^10.0.3",
"concurrently": "^4.1.2",
"cross-env": "^6.0.0",
"cypress": "^3.4.1",
"cypress-cucumber-preprocessor": "^1.16.0",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.0",
"eslint-plugin-cypress": "^2.6.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"husky": "^3.0.5",
"jest-junit": "^8.0.0",
"jwt-decode": "^2.2.0",
"majestic": "^1.6.0",
"moment": "^2.24.0",
"strip-ansi": "5.2.0",
"vue-template-compiler": "^2.6.10",
"wait-on": "^3.3.0",
"wallaby-vue-compiler": "^1.0.6"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.6.0",
"yarn": ">= 1.6.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint --fix",
"pre-push": "yarn lint --fix"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}