-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.48 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
{
"name": "@cucumber/screenplay-examples",
"private": true,
"version": "0.0.1",
"description": "Examples for @cucumber/screenplay",
"devDependencies": {
"@cucumber/screenplay": "^5.1.0",
"@cucumber/cucumber": "^7.3.1",
"@cucumber/electron": "4.1.3",
"@cucumber/microdata": "2.1.0",
"@testing-library/dom": "10.4.0",
"@testing-library/user-event": "13.5.0",
"@types/eventsource": "1.1.15",
"@types/express": "5.0.0",
"@types/mocha": "10.0.10",
"@types/node": "22.10.2",
"@types/node-fetch": "2.6.12",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"assembly-diagrams": "0.0.1",
"electron": "13.6.9",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eventsource": "2.0.2",
"express": "4.21.2",
"mocha": "11.0.1",
"node-fetch": "2.7.0",
"prettier": "3.4.2",
"pretty-quick": "4.0.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"schema-dts": "1.1.2",
"source-map-support": "0.5.21",
"ssestream": "1.1.0",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"uuid": "11.0.3"
},
"scripts": {
"build": "tsc --build tsconfig.json",
"test": "npm run cucumber && npm run cucumber-http && npm run cucumber-dom && npm run cucumber-dom-http",
"cucumber": "cucumber-js",
"cucumber-http": "cucumber-js --profile http",
"cucumber-dom": "cucumber-electron --profile dom --stylesheet features/src/components/style.css ",
"cucumber-dom-http": "cucumber-electron --profile domHttp --stylesheet features/src/components/style.css",
"eslint": "eslint --ext ts,tsx --max-warnings 0 src features",
"eslint-fix": "eslint --ext ts,tsx --max-warnings 0 --fix src features",
"pretty-quick": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cucumber/screenplay.js.examples.git"
},
"keywords": [
"testing",
"bdd",
"cucumber",
"Screenplay"
],
"author": "Cucumber Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/cucumber/screenplay.js.examples/issues"
},
"homepage": "https://github.com/cucumber/screenplay.js.examples#readme",
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"printWidth": 120
}
}