-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 807 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 807 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": "yarn-commitlint-sample",
"private": true,
"workspaces": [
"packages/*"
],
"version": "0.2.0",
"scripts": {
"build": "tsc --build tsconfig.build.json",
"prettier:check": "prettier --check \"**/*.ts\"",
"prettier": "prettier --write \"**/*.ts\""
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-tsdoc": "^0.2.11",
"husky": "^6.0.0",
"prettier": "2.2.1",
"typescript": "4.3.4"
}
}