-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "endo-playground",
"private": true,
"useWorkspaces": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=16"
},
"devDependencies": {
"@jessie.js/eslint-plugin": "^0.3.0",
"@octokit/core": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"ava": "^5.3.0",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-jessie": "^0.0.6",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.4.3",
"lerna": "^5.6.2",
"lerna-update-wizard": "^0.17.5",
"prettier": "^3.1.1",
"type-coverage": "^2.26.3",
"typedoc": "^0.25.7",
"typescript": "~5.3.3"
},
"scripts": {
"clean": "lerna clean",
"cover": "lerna run cover",
"depcheck": "node scripts/check-mismatched-dependencies.js",
"docs": "typedoc",
"update": "lernaupdate --dedupe",
"format": "yarn prettier --write .github packages",
"lint": "yarn prettier --check .github packages && lerna run lint",
"lint-fix": "lerna run --no-bail lint-fix",
"test": "lerna run test",
"test262": "lerna run test262",
"postinstall": "patch-package",
"patch-package": "patch-package",
"build": "lerna run build",
"build-ts": "tsc --build tsconfig.build.json"
},
"dependencies": {
"conventional-changelog-conventionalcommits": "^4.6.0",
"patch-package": "^6.2.2"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true
},
"typeCoverage": {
"atLeast": 0
}
}