-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.52 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.52 KB
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
{
"name": "drydock-e2e",
"version": "1.0.0",
"description": "drydock - e2e",
"engines": {
"node": ">=24.0.0"
},
"main": "index.js",
"scripts": {
"format": "biome format --write .",
"lint:fix": "biome check --fix .",
"lint": "biome check .",
"cucumber": "cucumber-js **/*.feature",
"test:security": "node --test tests/security/*.test.js",
"test:playwright": "playwright test",
"test:playwright:ui": "playwright test --headed",
"test:local": "dotenvx run -- ../scripts/run-e2e-tests.sh",
"test:setup": "dotenvx run -- ../scripts/setup-test-containers.sh",
"test:start-drydock": "dotenvx run -- ../scripts/start-drydock.sh",
"test:cleanup": "../scripts/cleanup-test-containers.sh",
"load:ci": "ARTILLERY_ENV=ci ../scripts/run-load-test.sh",
"load:behavior": "ARTILLERY_FILE=./test/test-behavior.yml ARTILLERY_ENV=behavior ../scripts/run-load-test.sh",
"load:stress": "ARTILLERY_ENV=stress ../scripts/run-load-test.sh"
},
"author": "CodesWhat",
"repository": "CodesWhat/drydock",
"license": "AGPL-3.0-only",
"dependencies": {
"@cucumber/cucumber": "12.7.0",
"socket.io-parser": "4.2.6"
},
"devDependencies": {
"@dotenvx/dotenvx": "1.57.1",
"@playwright/test": "1.60.0",
"artillery": "2.0.32",
"lodash": "4.18.1"
},
"overrides": {
"brace-expansion": "5.0.6",
"fast-xml-parser": "5.7.3",
"minimatch": "10.2.4",
"picomatch": "4.0.4",
"postcss": "8.5.10",
"uuid": "14.0.0",
"ws": "8.20.1",
"yaml": "2.8.3"
}
}