-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 959 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 959 Bytes
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
{
"name": "arlecchino",
"version": "1.0.0",
"main": "dist/main.js",
"author": "bitomic",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn workspaces foreach -pvt run build",
"lint": "yarn workspaces foreach -pv --exclude arlecchino run lint",
"bot": "yarn workspace @arlecchino/bot",
"prisma": "yarn workspace @arlecchino/prisma",
"secrets": "yarn workspace @arlecchino/secrets",
"worker": "yarn workspace @arlecchino/worker"
},
"packageManager": "[email protected]",
"devDependencies": {
"@bitomic/eslint-config": "^1.3.0",
"@types/node": "^24.12.4",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"eslint": "^10.4.0",
"rimraf": "^6.1.3",
"typescript": "^6.0.3"
},
"resolutions": {
"listr2": "^6.6.1"
},
"publishConfig": {
"access": "public"
},
"workspaces": [
"packages/*"
]
}