-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.31 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
{
"name": "e2e-ghost",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"pretest": "npx tsc --incremental -p tests/tsconfig.json",
"playwright": "playwright test",
"kraken-compile": "npx tsc --build ./features/web_src/tsconfig.json",
"kraken": "docker rm --force ghost-testing; npm run kraken-compile && npx ts-node shared/krakenRunner.ts",
"reporter": "npx tsc --build ./shared && npx ts-node shared/reporter/index.ts",
"gendatapool": "npx ts-node e2e-playwright/util/dataGenerator.ts",
"test-data": "docker rm --force ghost-testing; npx playwright test --workers 1",
"test-pw-regular": "docker rm --force ghost-testing; npx playwright test --project=regular --workers 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.21.1",
"source-map-loader": "^3.0.1",
"source-map-support": "^0.5.21",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@faker-js/faker": "^6.3.1",
"@types/express": "^4.17.13",
"@types/nunjucks": "^3.2.1",
"@types/resemblejs": "^4.1.0",
"chokidar": "^3.5.3",
"commander": "^9.2.0",
"express": "^4.18.1",
"ghost-cli": "^1.19.3",
"kraken-node": "^1.0.24",
"nunjucks": "^3.2.3",
"resemblejs": "^4.1.0"
}
}