-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
83 lines (83 loc) · 2.51 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@oada/server",
"private": true,
"workspaces": [
"services/*",
"libs/*"
],
"scripts": {
"g:eslint": "eslint $INIT_CWD",
"build": "yarn workspaces foreach -Apt run build",
"clean": "yarn build --clean",
"g:tsc": "cd $INIT_CWD && tsc -b",
"g:pino-pretty": "pino-pretty"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/compat": "^1.2.4",
"@eslint/config-inspector": "^0.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/node22": "^22.0.0",
"@types/eslint": "^9.6.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@yarnpkg/sdks": "^3.2.0",
"browserslist": "^4.24.2",
"c8": "^10.1.3",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.46.0",
"eslint-config-xo-typescript": "^7.0.0",
"eslint-formatter-pretty": "^6.0.1",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-array-func": "^5.0.2",
"eslint-plugin-ava": "^15.0.1",
"eslint-plugin-escompat": "^3.11.4",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-github": "^5.1.4",
"eslint-plugin-i18n-text": "^1.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-no-constructor-bind": "^2.0.4",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-no-secrets": "^2.1.1",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-unicorn": "^56.0.1",
"get-port": "^7.1.0",
"prettier": "^3.4.2",
"tslib": "2.8.1",
"typescript": "5.7.2",
"typescript-eslint": "^8.18.0",
"update-browserslist-db": "^1.1.1",
"zx": "^8.2.4"
},
"dependencies": {
"pino-pretty": "^13.0.0"
},
"resolutions": {
"cross-spawn": "^7.0.5",
"eslint-config-prettier": "https://github.com/abrahamguo/eslint-config-prettier.git",
"fastify-plugin": "^5.0.1",
"tslib": "2.7.0"
},
"engines": {
"node": ">=20.0.0"
},
"volta": {
"node": "22.5.1"
},
"packageManager": "yarn@4.5.3"
}