-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (107 loc) · 6.52 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
109
110
{
"name": "councilbox_client",
"version": "8.11.1",
"private": true,
"dependencies": {},
"scripts": {
"start": "cross-env REACT_APP_MODE=dev react-scripts start",
"startS": "cross-env HTTPS=true REACT_APP_MODE=dev react-scripts start",
"startlinux": "REACT_APP_MODE=dev react-scripts start",
"build": "cross-env REACT_APP_MODE=alpha react-scripts build",
"startAlpha": "cross-env REACT_APP_MODE=alpha react-scripts start",
"test1": "mocha --require babel-register ./src/tests",
"versions": "cypress run --headed --browser electron --spec=cypress/integration/TEST1/execlTest.js",
"regression": "cypress run --headless --spec=cypress/integration/2.Regression/*",
"smoke edge dev": "cypress run --headed --browser edge --config baseUrl=https://app.dev.councilbox.com --spec=cypress/integration/1.Smoke/*",
"smoke chrome dev": "cypress run --headed --browser chrome --config baseUrl=https://app.dev.councilbox.com --spec=cypress/integration/1.Smoke/*",
"smoke firefox dev": "cypress run --headed --browser firefox --config baseUrl=https://app.dev.councilbox.com --spec=cypress/integration/1.Smoke/*",
"smoke electron prod": "cypress run --headed --config baseUrl=https://app.councilbox.com --spec=cypress/integration/1.Smoke/*",
"smoke electron dev": "cypress run --headed --browser electron --config baseUrl=https://app.dev.councilbox.com --spec=cypress/integration/1.Smoke/*",
"ovac smoke firefox prod": "cypress run --headed --browser firefox --config baseUrl=https://ovac.pre.councilbox.com --spec=cypress/integration/OVAC/1.Smoke/*",
"ovac smoke chrome prod": "cypress run --headed --browser chrome --config baseUrl=https://ovac.pre.councilbox.com --spec=cypress/integration/OVAC/1.Smoke/*",
"ovac smoke edge prod": "cypress run --headed --browser edge --config baseUrl=https://ovac.pre.councilbox.com --spec=cypress/integration/OVAC/1.Smoke/*",
"ovac smoke electron prod": "cypress run --headed --browser electron --config baseUrl=https://ovac.pre.councilbox.com --spec=cypress/integration/OVAC/1.Smoke/*",
"ovac smoke firefox dev": "cypress run --headed --browser firefox --config baseUrl=https://ovac.dev.councilbox.com --spec=cypress/integration/OVAC/1.Smoke/*",
"ovac smoke chrome dev": "cypress run --headed --browser chrome --config baseUrl=https://ovac.dev.councilbox.com --spec=cypress/integration/OVAC/1.Smoke/*",
"ovac smoke edge dev": "cypress run --headed --browser edge --config baseUrl=https://ovac.dev.councilbox.com --spec=cypress/integration/OVAC/1.Smoke/*",
"ovac test": "cypress run --headed --config baseUrl=https://ovac.dev.councilbox.com --spec=cypress/integration/OVAC/2.Regresion/1.Account_section.js",
"ovac smoke electron dev": "cypress run --headed --browser electron --config baseUrl=https://ovac.dev.councilbox.com --spec=cypress/integration/OVAC/1.Smoke/*",
"smoke chrome": "cypress run --headed --browser chrome --spec=cypress/integration/1.Smoke/*",
"smoke firefox": "cypress run --headed --browser firefox --spec=cypress/integration/1.Smoke/*",
"smoke edge": "cypress run --headed --browser edge --spec=cypress/integration/1.Smoke/*",
"regression electron": "cypress run --headed --spec=cypress/integration/2.Regression/*",
"regression chrome": "cypress run --headed --browser electron --spec=cypress/integration/2.Regression/(9.'Net meeting' section (With Session - admin side).js)",
"regression headless": "cypress run --headless --spec=cypress/integration/2.Regression/*",
"regression firefox": "cypress run --headed --browser firefox --spec=cypress/integration/2.Regression/*",
"regression edge": "cypress run --headed --browser edge --spec=cypress/integration/2.Regression/*",
"regression cert": "cypress run --headed --browser electron --spec=cypress/integration/1.Smoke/92.Certificate_section.js",
"regression net": "cypress run --headless --spec=cypress/integration/2.Regression/7.Knowledge_Base_section.js",
"smoke": "npm run pretest && cypress run --headless --spec=cypress/integration/1.Smoke/*",
"ovac smoke dev": "cypress run --headed --browser electron --spec=cypress/integration/OVAC/1.Smoke/*",
"ovac smoke prod": "cypress run --headed --browser electron --spec=cypress/integration/OVAC/1.Smoke/*",
"ovac regression": "cypress run --headed --spec=cypress/integration/OVAC/2.Regresion/*",
"cypress": "cypress open",
"lint": "eslint . --quiet --ext .js --ext .jsx",
"lint-fix": "eslint . --fix --ext .js --ext .jsx",
"eject": "react-scripts eject",
"analyze": "source-map-explorer build/static/js/main.*",
"format": "prettier --write 'src/**/*'",
"deploy": "sh deploy.sh",
"clean:reports": "rmdir /S /Q cypress\\reports && mkdir cypress\\reports && mkdir cypress\\reports\\mochareports",
"pretest": "npm run clean:reports",
"scripts": "cypress run --headless --spec=cypress/integration/1.Smoke/*",
"combine-reports": "npx mochawesome-merge cypress/reports/mocha/*.json > cypress/reports/report.json",
"generate-report": "npx marge cypress/reports/report.json --reportDir ./ --inline",
"posttest": "npm run combine-reports && npm run generate-report",
"test": "npm run scripts || npm run posttest",
"scripts2": "cypress run --headed --browser electron --spec=cypress/integration/OVAC/1.Smoke/1.Account_section.js",
"cy:test-ovac": "npm run pretest && npm run scripts2"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/preset-env": "^7.13.5",
"@councilbox/eslint-config-base": "^0.0.1",
"@cypress/webpack-preprocessor": "^5.6.0",
"clipboardy": "^3.0.0",
"css-loader": "^0.28.8",
"cy-verify-downloads": "^0.1.4",
"cypress": "^9.5.4",
"cypress-downloadfile": "^1.2.1",
"cypress-file-upload": "^5.0.8",
"cypress-mailslurp": "^1.3.0",
"cypress-mochawesome-reporter": "^2.0.1",
"cypress-multi-reporters": "^1.6.0",
"cypress-xpath": "^1.6.2",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0",
"mocha": "^5.2.0",
"mochawesome": "^6.3.1",
"mochawesome-merge": "^4.2.1",
"mochawesome-report-generator": "^5.2.0",
"node-sass": "^5.0.0",
"prettier": "1.13.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"add-react-displayname"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}