-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.39 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
49
50
51
52
53
54
{
"name": "cpk-e2e",
"version": "0.1.0",
"description": "E2E render testing tool for cpk-ui React Native components",
"main": "dist/scripts/index.js",
"types": "dist/scripts/index.d.ts",
"bin": {
"cpk-e2e": "dist/scripts/cli.js"
},
"files": [
"dist",
"tests",
"playwright.config.ts",
"cpk-e2e.config.ts"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"discover": "tsx scripts/discover-components.ts",
"check-coverage": "tsx scripts/check-coverage.ts",
"build-storybook": "cd ../cpk-ui && STORYBOOK=1 npx storybook build -o storybook-static",
"serve": "npx http-server ../cpk-ui/storybook-static -p 6006 --silent",
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"e2e": "tsx scripts/run-e2e.ts",
"report": "playwright show-report",
"build": "tsc --project tsconfig.build.json",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@playwright/test": "^1.52.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.19.0",
"typescript": "~5.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/crossplatformkorea/cpk-e2e"
},
"license": "MIT",
"keywords": [
"e2e",
"testing",
"react-native",
"storybook",
"playwright",
"cpk-ui"
]
}