-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.21 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.21 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
{
"author": "OttoHung <totsi04@gmail.com>",
"description": "Most used packages",
"devDependencies": {
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-react": "latest",
"jest": "^29.7.0",
"tsconfig-paths": "latest",
"ts-jest": "^26.0.0",
"ts-node": "latest",
"typescript": "latest",
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"@types/node": "latest"
},
"license": "MIT",
"name": "ts-packages",
"private": true,
"repository": "git@github.com:OttoHung/typescript.utils.git",
"scripts": {
"build": "yarn workspaces run build",
"clean": "ts-node -r tsconfig-paths/register packages/ts-clean/src/ts-clean.ts packages/**/dist packages/**/lib packages/**/bin packages/**/*.log",
"clean:install": "ts-node -r tsconfig-paths/register packages/ts-clean/src/ts-clean.ts --installed packages/**/node_modules",
"fix": "eslint . --fix --ext .ts",
"lint": "eslint . --ext .ts",
"test": "yarn workspaces run test",
"ts-clean": "yarn workspace @ottohung/ts-clean"
},
"version": "0.1.0",
"workspaces": [
"packages/*"
]
}