-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.9 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "workspace",
"version": "1.0.0",
"description": "",
"main": "index.js",
"packageManager": "[email protected]",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pnpm run -C internal/build start",
"build:icon": "pnpm run -C internal/build start:icon",
"update:icon-version": "tsx scripts/update-version-icon.ts",
"update:version": "tsx scripts/update-version.ts",
"clean": "pnpm run clean:dist && pnpm run -r --parallel clean",
"clean:dist": "rimraf dist",
"clean:icon": "rimraf ./packages/lcx-design-icon/dist",
"prepare": "husky"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --config .commitlintrc.js -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{cjs,js,jsx,ts,tsx}": "eslint --fix",
"*.{cjs,css,cts,html,js,json,jsx,less,md,mjs,mts,scss,ts,tsx,vue,yaml,yml}": "prettier --write",
"*.{css,less,scss}": "stylelint --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"chalk": "^5.4.1",
"classnames": "^2.5.1",
"gulp": "^5.0.0",
"lcx-design": "workspace:*",
"lcx-design-icon": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@types/gulp": "^4.0.17",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"stylelint-config-ali": "^2.1.1",
"stylelint-prettier": "^5.0.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
}
}