-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.15 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
{
"name": "verivoxchallenge",
"version": "1.0.0",
"description": "Project with E2E/UI tests using WebDriverIO and API tests with SuperTest",
"main": "index.js",
"scripts": {
"test:ui": "npx wdio wdio.conf.js",
"docker:up:grid": "docker-compose up -d",
"docker:down:grid": "docker-compose down",
"test:remoteGrid": "npx wdio wdioRemote.conf.js",
"test:api": "npx mocha --config test/api/config/.mocharc.json test/api/specs/*.ts",
"test:api:generateReport": "npx mocha --config test/api/config/.mocharc.json test/api/specs/*.ts --reporter mochawesome --reporter-options reportDir=./test/api/report",
"lint": "npx eslint 'test/**/*.ts'",
"lint:fix": "npx eslint 'test/**/*.ts' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teixeira-fernando/VerivoxChallenge.git"
},
"author": "Fernando Teixeira",
"license": "ISC",
"bugs": {
"url": "https://github.com/teixeira-fernando/VerivoxChallenge/issues"
},
"homepage": "https://github.com/teixeira-fernando/VerivoxChallenge#readme",
"dependencies": {
"@types/mocha": "^9.0.0",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@wdio/cli": "6.1.16",
"chai": "^4.3.0",
"dotenv": "^16.0.0",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^3.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "8.0.1",
"joi": "^17.4.0",
"mocha": "^10.0.0",
"mochawesome": "^7.0.0",
"multiple-cucumber-html-reporter": "^1.18.0",
"supertest": "^6.1.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^4.0.0",
"typescript": "4.1.5",
"wdio-cucumberjs-json-reporter": "^3.0.0"
},
"devDependencies": {
"@wdio/cucumber-framework": "6.1.14",
"@wdio/local-runner": "6.1.14",
"@wdio/selenium-standalone-service": "6.1.14",
"@wdio/spec-reporter": "6.1.14",
"@wdio/sync": "6.1.14",
"chromedriver": "104.0.0",
"wdio-chromedriver-service": "7.3.2",
"wdio-cucumber-reporter": "0.0.2"
}
}