generated from serenity-js/serenity-js-playwright-ct-react-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 3.42 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@serenity-js/serenity-js-playwright-ct-react-template",
"version": "1.0.0",
"description": "",
"type": "module",
"sideEffects": [
"*.css"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"source": "./src/index.ts",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./serenity": {
"import": "./dist/esm/serenity.js",
"require": "./dist/cjs/serenity.js"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"postinstall": "serenity-bdd update",
"clean": "rimraf dist target",
"build": "npm run build:js && npm run build:css",
"build:js": "npm run build:js:esm && npm run build:js:cjs && npm run build:js:cjs-package",
"build:js:esm": "tsc --project tsconfig.build.json --outDir dist/esm --module esnext",
"build:js:cjs": "tsc --project tsconfig.build.json --outDir dist/cjs --module commonjs",
"build:js:cjs-package": "node -e \"require('fs').writeFileSync('dist/cjs/package.json', '{ \\\"type\\\": \\\"commonjs\\\" }')\"",
"build:css": "cpy 'src/**/*.css' dist",
"test": "failsafe clean test:execute test:report",
"test:execute": "playwright test -c playwright.config.ts",
"test:report": "serenity-bdd run --features ./src",
"start": "mkdirp target/site/serenity && npx http-server -p 8080 target/site/serenity -s -o",
"lint": "eslint --ext ts --config .eslintrc.cjs .",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serenity-js/serenity-js-playwright-ct-react-template.git"
},
"keywords": [
"serenity-js",
"bdd",
"playwright",
"playwright-ct"
],
"author": {
"name": "Jan Molak",
"email": "[email protected]",
"url": "https://janmolak.com"
},
"homepage": "https://serenity-js.org",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/serenity-js/serenity-js-playwright-ct-react-template/issues"
},
"engines": {
"node": "^18.12 || ^20"
},
"dependencies": {
},
"peerDependencies": {
"clsx": "^2.1.1",
"lit": "3.2.1",
"@serenity-js/core": "^3.28.0",
"@serenity-js/web": "^3.28.0"
},
"peerDependenciesMeta": {
"clsx": {
"optional": false
},
"lit": {
"optional": false
},
"@serenity-js/core": {
"optional": true
},
"@serenity-js/web": {
"optional": true
}
},
"overrides": {
"vite": {
"rollup": "npm:@rollup/wasm-node"
}
},
"devDependencies": {
"@sand4rt/experimental-ct-web": "^1.47.0",
"@serenity-js/assertions": "^3.28.0",
"@serenity-js/console-reporter": "^3.28.0",
"@serenity-js/core": "^3.28.0",
"@serenity-js/playwright": "^3.28.0",
"@serenity-js/playwright-test": "^3.28.0",
"@serenity-js/rest": "^3.28.0",
"@serenity-js/serenity-bdd": "^3.28.0",
"@serenity-js/web": "^3.28.0",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"cpy-cli": "5.0.0",
"eslint": "9.14.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unicorn": "56.0.0",
"eslint-plugin-unused-imports": "4.1.4",
"http-server": "14.1.1",
"lit": "3.2.1",
"mkdirp": "3.0.1",
"npm-failsafe": "1.3.0",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"typescript": "5.6.3"
}
}