-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 KB
/
package.json
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
44
45
46
47
48
49
50
51
{
"name": "pangu",
"version": "0.0.0",
"description": "tools for pangu",
"main": "bin/index.js",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "jest",
"lint": "eslint ./packages --ext=.js,.ts --fix",
"release": "lerna publish --conventional-commits --yes",
"build": "lerna run build"
},
"repository": {
"type": "git",
"url": "[email protected]:open-data-plan/pangu.git"
},
"keywords": [
"cli",
"react",
"redux"
],
"author": "kagawagao <[email protected]> (https://kingsongao.com/)",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@opd/eslint-config": "file:./packages/eslint-config",
"@opd/prettier-config": "file:./packages/prettier-config",
"@opd/stylelint-config": "file:./packages/stylelint-config",
"@types/node": "^22.0.0",
"@types/postcss-html": "^1.5.3",
"husky": "^9.0.6",
"lerna": "^8.0.0",
"lint-staged": "^15.1.0",
"typescript": "^5.3.2"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"prettier": "@opd/prettier-config",
"stylelint": {
"extends": "@opd/stylelint-config"
}
}