forked from cucumber/common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.74 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
{
"name": "@cucumber/cucumber-monorepo",
"private": true,
"version": "0.0.0",
"license": "MIT",
"workspaces": [
"messages/javascript",
"message-streams/javascript",
"gherkin/javascript",
"gherkin-streams/javascript",
"gherkin-utils/javascript",
"cucumber-expressions/javascript",
"tag-expressions/javascript",
"create-meta/javascript",
"fake-cucumber/javascript",
"query/javascript",
"compatibility-kit/javascript",
"json-formatter/javascript-testdata",
"react/javascript",
"html-formatter/javascript",
"json-to-messages/javascript",
"json-to-messages/javascript-testdata"
],
"scripts": {
"build": "tsc --build tsconfig.build.json",
"clean": "./scripts/npm-each rm -rf node_modules dist acceptance && rm -rf node_modules",
"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",
"prepare": "./scripts/npm-each npm run prepare --if-present"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"eslint": "7.26.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"npm-check-updates": "11.5.10",
"prettier": "2.3.0",
"pretty-quick": "3.1.0",
"tsconfig-paths": "3.9.0",
"typescript": "4.2.4"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"printWidth": 100
}
}