forked from nikhiljohn10/telegram-bot-worker
-
-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 726 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 726 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
{
"name": "root",
"private": true,
"author": "codebam",
"license": "Apache-2.0",
"scripts": {
"build": "npm run build --workspaces",
"build:worker": "npm run build --workspace=packages/worker",
"test": "npm run test --workspaces",
"test:worker": "npm run test --workspace=packages/worker",
"test:main": "npm run test --workspace=packages/main",
"lint": "npm run lint --workspaces",
"ncu": "npx npm-check-updates -i --workspaces --root -u"
},
"workspaces": [
"packages/main",
"packages/worker"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.56.0",
"npm-check-updates": "^19.4.1",
"typedoc": "^0.28.17"
},
"version": "",
"dependencies": {
"@eslint/eslintrc": "^3.3.3"
}
}