forked from wso2/identity-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.73 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
{
"name": "@wso2is/integration-tests",
"version": "2.0.0",
"private": true,
"description": "Cypress integration tests for WSO2 Identity Apps.",
"author": "WSO2",
"license": "Apache-2.0",
"main": "index.js",
"scripts": {
"build": "pnpm precypressbuild && pnpm tsc",
"clean": "pnpm clean:node-modules && pnpm clean:package-lock",
"clean:package-lock": "rimraf ./package-lock.json",
"clean:node-modules": "rimraf ./node_modules",
"cypress": "pnpm precypress:run && run-script-os",
"cypress:win32": ".\\node_modules\\.bin\\cypress",
"cypress:default": "./node_modules/.bin/cypress",
"cy:clean:results": "rimraf output/results",
"cy:clean:screenshots": "rimraf output/screenshots",
"cy:headless": "node scripts/run-tests.js -- --headless",
"cy:headless:smoke": "node scripts/run-tests.js -- --headless --smoke",
"cy:interactive": "node scripts/run-tests.js -- --interactive",
"cy:report": "generate-mochawesome-report",
"lint": "pnpm lint:all",
"lint:all": "pnpm lint:targeted -- .",
"lint:autofix": "pnpm lint:all -- --fix",
"lint:targeted": "eslint --ext .js,.jsx,.ts,.tsx --resolve-plugins-relative-to .",
"precypress:run": "pnpm cy:clean:results && pnpm cy:clean:screenshots",
"precypressbuild": "node scripts/pre-build.js",
"test": "pnpm test:headless",
"test:smoke": "pnpm test:headless:smoke",
"test:headless": "pnpm cy:headless",
"test:headless:smoke": "pnpm cy:headless:smoke",
"test:interactive": "pnpm cy:interactive",
"tsc": "run-script-os",
"tsc:win32": ".\\node_modules\\.bin\\tsc -p tsconfig.json --incremental",
"tsc:default": "./node_modules/.bin/tsc -p tsconfig.json --incremental"
},
"dependencies": {
"@wso2/identity-cypress-test-base": "^0.2.3",
"cypress-mochawesome-reporter": "^1.0.2",
"cypress-multi-reporters": "^1.4.0",
"mocha": "^8.1.3",
"mochawesome": "^6.1.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"@cypress/webpack-batteries-included-preprocessor": "^2.1.1",
"@cypress/webpack-preprocessor": "^5.4.5",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^13.9.2",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"cypress": "^5.2.0",
"eslint": "^7.20.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^4.0.0",
"rimraf": "^3.0.2",
"run-script-os": "^1.0.7",
"typescript": "^4.6.4"
}
}