forked from cucumber/common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.88 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
{
"name": "@cucumber/cucumber-monorepo",
"private": true,
"version": "0.0.0",
"license": "MIT",
"workspaces": [
"messages/javascript",
"gherkin/javascript",
"gherkin-utils/javascript",
"query/javascript"
],
"scripts": {
"build:cjs": "tsc --build tsconfig.build-cjs.json",
"build:esm": "tsc --build tsconfig.build-esm.json",
"build:legacy": "tsc --build tsconfig.build.json",
"build": "npm run build:cjs && npm run build:esm && npm run build:legacy",
"postbuild:cjs": "./scripts/npm-each npm run postbuild:cjs --if-present",
"clean": "npm run clean-tsc && ./scripts/npm-each rm -rf node_modules package-lock.json acceptance && rm -rf node_modules package-lock.json",
"clean-tsc": "./scripts/npm-each rm -rf dist",
"test": "./scripts/npm-each npm test",
"upgrade": "npm-check-updates --upgrade && ./scripts/npm-each npm-check-updates --upgrade",
"eslint-fix": "eslint --ext ts,tsx --max-warnings 0 --fix */javascript",
"eslint": "eslint --ext ts,tsx --max-warnings 0 */javascript",
"prepare": "./scripts/npm-each npm run prepare --if-present"
},
"devDependencies": {
"@cucumber/compatibility-kit": "^11.0.0",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"ajv": "8.11.0",
"ajv-cli": "5.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"npm-check-updates": "15.0.2",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"rimraf": "^3.0.2",
"tsconfig-paths": "4.0.0",
"typescript": "4.7.4"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"printWidth": 100
}
}