-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 2.35 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
{
"name": "@smartbear/react-gherkin-editor",
"version": "2.4.14",
"description": "A Gherkin language editor for React.",
"homepage": "https://github.com/SmartBear/react-gherkin-editor",
"repository": {
"type": "git",
"url": "https://github.com/SmartBear/react-gherkin-editor"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "SmartBear Software",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"start": "webpack serve",
"pretty": "prettier --write .",
"test": "jest",
"lint": "concurrently yarn:eslint yarn:type-check",
"eslint": "eslint --ext js,jsx,ts,tsx .",
"type-check": "tsc --noEmit",
"build": "tsc --project tsconfig.build.json",
"release": "node scripts/release.js",
"prepack": "rm -rf dist && yarn build",
"postpack": "rm -rf dist",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.2.79",
"@typescript-eslint/parser": "^5.61.0",
"buffer": "^6.0.3",
"concurrently": "^8.2.2",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.37.2",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.1",
"process": "^0.11.10",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.3.1",
"react-select-event": "^5.5.1",
"semver": "^7.6.3",
"stream-browserify": "^3.0.0",
"styled-components": "^5.3.11",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@cucumber/gherkin": "^26.2.0",
"ace-builds": "^1.36.5",
"calculate-size": "^1.1.1",
"escape-string-regexp": "^5.0.0",
"lodash": "^4.17.21",
"re-resizable": "^6.10.1",
"react-ace": "^10.1.0",
"react-select": "^5.8.3"
},
"peerDependencies": {
"react": ">=16.8.0 <19.0.0",
"react-dom": ">=16.8.0 <19.0.0",
"styled-components": ">=3.0.0 <6.0.0"
}
}