-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"name": "pokeshop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"cy:open": "cypress open",
"cy:run": "cypress run",
"pw:run": "playwright test",
"pw:open": "playwright test --ui",
"artillery:run": "artillery run ./test/artillery/import-pokemon.yml",
"k6:run": "sh ./test/k6/run.sh",
"test": "npm run cy:run && npm run pw:run && npm run artillery:run && npm run k6:run",
"generate-diagram": "mmdc"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@mermaid-js/mermaid-cli": "^10.6.1",
"@playwright/test": "1.45.0",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"artillery": "^2.0.9-83ceb0d",
"cypress": "^13.6.1",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-module-resolver": "^1.5.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@opentelemetry/sdk-trace-base": "^1.26.0",
"@tracetest/cypress": "^0.2.0",
"@tracetest/playwright": "0.2.0",
"artillery-plugin-tracetest": "^0.2.0"
}
}