-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
121 lines (121 loc) · 3.58 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
117
118
119
120
121
{
"name": "@cucumber/react-components",
"version": "22.3.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/cucumber.git"
},
"author": "Aslak Hellesøy",
"license": "MIT",
"scripts": {
"prepare": "husky install && 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",
"eslint-fix": "eslint --ext ts,tsx --max-warnings 0 --fix src test-utils",
"eslint": "eslint --ext ts,tsx --max-warnings 0 src test-utils",
"pretty-quick-staged": "pretty-quick --staged"
},
"dependencies": {
"@cucumber/gherkin-utils": "9.0.0",
"@cucumber/messages": "25.0.1",
"@cucumber/query": "12.2.0",
"@cucumber/tag-expressions": "6.1.0",
"@fortawesome/fontawesome-svg-core": "6.2.1",
"@fortawesome/free-solid-svg-icons": "6.2.1",
"@fortawesome/react-fontawesome": "0.2.0",
"@orama/orama": "^2.0.0-beta.7",
"@orama/stemmers": "^2.0.0-beta.7",
"@teppeis/multimaps": "2.0.0",
"ansi-to-html": "0.7.2",
"color": "4.2.3",
"date-fns": "2.29.3",
"hast-util-sanitize": "^5.0.1",
"highlight-words": "1.2.2",
"mime": "^3.0.0",
"react-accessible-accordion": "5.0.0",
"react-error-boundary": "^4.0.13",
"react-markdown": "6.0.3",
"rehype-raw": "5.1.0",
"rehype-sanitize": "4.0.0",
"remark-breaks": "2.0.2",
"remark-gfm": "1.0.0",
"use-debounce": "^10.0.0"
},
"peerDependencies": {
"react": "~18",
"react-dom": "~18"
},
"devDependencies": {
"@cucumber/compatibility-kit": "16.1.0",
"@cucumber/fake-cucumber": "16.5.0",
"@cucumber/gherkin": "28.0.0",
"@cucumber/gherkin-streams": "5.0.1",
"@cucumber/message-streams": "4.0.1",
"@ladle/react": "^2.4.5",
"@testing-library/react": "14.1.2",
"@testing-library/user-event": "14.5.1",
"@types/chai": "^4.3.11",
"@types/chai-dom": "^1.11.3",
"@types/color": "3.0.3",
"@types/glob": "8.0.0",
"@types/jsdom": "^21.1.6",
"@types/mime": "^3.0.1",
"@types/mocha": "^10.0.6",
"@types/node": "18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/sinon": "^17.0.2",
"@types/sinon-chai": "^3.2.12",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"chai": "^4.3.10",
"chai-dom": "^1.12.0",
"core-js": "3.27.1",
"cpy-cli": "4.2.0",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.4",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "9.0.0",
"glob": "8.1.0",
"global-jsdom": "^9.1.0",
"husky": "8.0.3",
"jsdom": "22.1.0",
"mocha": "^10.2.0",
"nyc": "15.1.0",
"path-browserify": "1.0.1",
"prettier": "2.8.3",
"pretty-quick": "3.1.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"sass": "1.57.1",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.1",
"typescript": "4.9.4"
},
"overrides": {
"uuid": "9.0.0"
},
"bugs": {
"url": "https://github.com/cucumber/cucumber/issues"
},
"homepage": "https://github.com/cucumber/cucumber#readme",
"directories": {
"test": "test"
},
"keywords": []
}