-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.06 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.06 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
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
{
"name": "@cucumber/react-components",
"version": "24.2.0",
"description": "React components for Cucumber",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cucumber/react-components.git"
},
"author": "Aslak Hellesøy",
"license": "MIT",
"scripts": {
"prepare": "node generate-fixtures.cjs",
"compile": "tsc --project tsconfig.build.json && cpy 'src/**/*.scss' 'dist/src'",
"test": "mocha 'src/**/*.spec.*'",
"start": "ladle serve",
"build": "ladle build",
"preview": "ladle preview",
"lint": "biome check --error-on-warnings",
"fix": "biome check --error-on-warnings --write",
"prepublishOnly": "npm run compile"
},
"dependencies": {
"@cucumber/gherkin-utils": "11.0.0",
"@cucumber/messages": "32.2.0",
"@cucumber/query": "15.0.1",
"@cucumber/tag-expressions": "9.1.0",
"@fortawesome/fontawesome-svg-core": "7.2.0",
"@fortawesome/free-solid-svg-icons": "7.2.0",
"@fortawesome/react-fontawesome": "3.2.0",
"@orama/orama": "^3.0.0",
"@orama/stemmers": "^3.0.0",
"@teppeis/multimaps": "3.0.0",
"ansi-to-html": "0.7.2",
"date-fns": "4.1.0",
"hast-util-sanitize": "^5.0.1",
"highlight-words-core": "1.2.3",
"mime": "^4.0.0",
"react-accessible-accordion": "5.0.1",
"react-error-boundary": "^6.0.0",
"react-markdown": "10.1.0",
"rehype-raw": "7.0.0",
"rehype-sanitize": "6.0.0",
"remark-breaks": "4.0.0",
"remark-gfm": "4.0.1",
"use-debounce": "^10.0.0",
"uuid": "13.0.0"
},
"peerDependencies": {
"react": "~18",
"react-dom": "~18"
},
"devDependencies": {
"@biomejs/biome": "^2.4.1",
"@cucumber/compatibility-kit": "^29.0.0",
"@cucumber/gherkin": "^39.0.0",
"@cucumber/message-streams": "^4.0.1",
"@ladle/react": "^5.0.3",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/chai": "^5.0.0",
"@types/chai-dom": "^1.11.3",
"@types/glob": "9.0.0",
"@types/highlight-words-core": "^1.2.3",
"@types/jsdom": "^28.0.0",
"@types/mime": "^4.0.0",
"@types/mocha": "^10.0.6",
"@types/node": "24.12.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/sinon": "^21.0.0",
"@types/sinon-chai": "^4.0.0",
"chai": "^6.0.0",
"chai-dom": "^1.12.0",
"core-js": "3.48.0",
"cpy-cli": "7.0.0",
"glob": "13.0.6",
"global-jsdom": "^28.0.0",
"jsdom": "28.1.0",
"mocha": "^11.2.2",
"nyc": "18.0.0",
"path-browserify": "1.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-is": "18.3.1",
"sass": "^1.89.2",
"sinon": "^21.0.0",
"sinon-chai": "^4.0.0",
"ts-node": "^10.9.1",
"typescript": "5.9.3"
},
"overrides": {
"uuid": "13.0.0"
},
"bugs": {
"url": "https://github.com/cucumber/react-components/issues"
},
"homepage": "https://github.com/cucumber/react-components#readme",
"directories": {
"test": "test"
},
"keywords": []
}