-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.22 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
37
38
39
40
41
42
43
{
"name": "create-typescript-app",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"tsx:build": "pnpm --filter tsx-scripts build",
"tsx:start": "pnpm --filter tsx-scripts start",
"tsx:test": "pnpm --filter tsx-scripts test",
"publish-all": "lerna version && lerna publish"
},
"keywords": [],
"author": "harhao",
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@commitlint/types": "^17.4.4",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"lerna": "^6.5.1",
"eslint": "^8.37.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.0",
"prettier": "^2.0.5",
"stylelint": "^15.3.0",
"stylelint-scss": "^4.6.0"
},
"lint-staged": {
"packages/**/*.{ts,tsx,js}": [
"eslint --ignore-path .lint/ignore/.eslintignore --config .lint/config/.eslintrc.json --fix"
],
"*.{md,json,yml}": [
"prettier --trailing-comma es5 --single-quote --write --ignore-path .lint/ignore/.prettierignore"
],
"packages/**/*.less": [
"stylelint --config .lint/config/.stylelintrc.json"
]
}
}