-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 747 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 747 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
{
"name": "typescript-techtalk",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "pnpm typecheck && pnpm run lint:prettier --check && pnpm run lint:eslint",
"lint:fix": "pnpm typecheck && pnpm run lint:prettier --write && pnpm run lint:eslint --fix",
"lint:eslint": "eslint './{src,test}/**/*.ts' --cache",
"lint:prettier": "prettier './{src,test}/**/*.ts'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-plugin-import": "^2.28.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}