-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 2.24 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
{
"name": "@cucumber/try-cucumber-expressions",
"private": true,
"version": "16.0.0",
"description": "Try Cucumber Expressions in your browser",
"type": "module",
"scripts": {
"build": "npm run build:typecheck && npm run build:js && cross-env NODE_ENV=production npm run build:css",
"build:typecheck": "tsc --build tsconfig.json",
"build:js": "esbuild src/index.tsx --bundle --minify --sourcemap --outfile=docs/index.js",
"build:serve": "esbuild src/index.tsx --bundle --serve --servedir=docs",
"build:css": "postcss src/style.css --output docs/style.css",
"eslint-fix": "eslint --ext ts,tsx --max-warnings 0 --fix src",
"eslint": "eslint --ext ts,tsx --max-warnings 0 src"
},
"repository": {
"type": "git",
"url": "git://github.com/cucumber/try-cucumber-expressions.git"
},
"keywords": [
"cucumber",
"steps",
"regexp",
"regex"
],
"author": "Cucumber Limited <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cucumber/try-cucumber-expressions/issues"
},
"homepage": "https://github.com/cucumber/try-cucumber-expressions#readme",
"devDependencies": {
"@codemirror/commands": "6.7.1",
"@codemirror/state": "6.5.0",
"@codemirror/view": "6.36.1",
"@cucumber/cucumber-expressions": "17.1.0",
"@headlessui/react": "1.7.19",
"@tailwindcss/forms": "0.5.9",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"autoprefixer": "10.4.20",
"cross-env": "7.0.3",
"esbuild": "0.24.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-simple-import-sort": "12.1.1",
"postcss": "8.4.49",
"postcss-cli": "11.0.0",
"prettier": "3.4.2",
"pretty-quick": "4.0.0",
"query-string": "9.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.28.1",
"tailwindcss": "3.4.17",
"typescript": "5.7.2",
"use-query-params": "2.2.1"
}
}