-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 717 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 717 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
{
"name": "learn-typescript",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Bulandent/learn-typescript.git",
"author": "bulandent <1326895569@qq.com>",
"scripts": {
"lint": "eslint src --ext .ts",
"prepare": "husky install"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^16.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-alloy": "^4.1.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --cache --fix",
"prettier --write"
]
}
}