-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.29 KB
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
{
"name": "@jessie.js/monorepo",
"private": true,
"useWorkspaces": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=14.14.0"
},
"type": "module",
"devDependencies": {
"@endo/eslint-plugin": "^2.4.0",
"@jessie.js/eslint-plugin": "^0.4.3",
"@typescript-eslint/parser": "^8.39.1",
"ava": "^6.4.1",
"eslint": "^9.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^54.1.0",
"lerna": "^5.0.0",
"lerna-update-wizard": "^0.17.5",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
},
"scripts": {
"clean": "lerna clean",
"depcheck": "node scripts/check-mismatched-dependencies.js",
"update": "lernaupdate --dedupe",
"lint": "lerna run lint",
"lint-fix": "lerna run --no-bail lint-fix",
"test": "lerna run --no-bail test",
"postinstall": "patch-package",
"build": "lerna run build"
},
"prettier": {
"arrowParens": "avoid",
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"patch-package": "^6.2.2"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}