-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
31 lines (31 loc) · 1.2 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
{
"name": "@debut/plugins",
"private": true,
"description": "Official Debut plugins store",
"scripts": {
"build": "npm run build --workspaces",
"upgrade:peer": "find . -type f -name 'package.json' -not -path './.git/*' -not -path '*/node_modules/*' -execdir ncu --dep peer --upgrade \\;",
"upgrade:deps": "find . -type f -name 'package.json' -not -path './.git/*' -not -path '*/node_modules/*' -execdir ncu --upgrade \\;",
"install:all": "find . -type f -name 'package.json' -not -path './.git/*' -not -path '*/node_modules/*' -execdir npm install \\;",
"prettier": "prettier --config .prettierrc --write packages/**/*.ts"
},
"author": "Dmitry Yurov",
"license": "Apache-2.0",
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@types/node": "^20.8.10",
"@types/ws": "^8.5.8",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"engines": {
"node": "^16.14.0"
}
}