-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.19 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"version": "1.0.0",
"private": true,
"description": "",
"homepage": "https://github.com/mountain-ui/mountain-ui#readme",
"bugs": {
"url": "https://github.com/mountain-ui/mountain-ui/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mountain-ui/mountain-ui.git"
},
"license": "MIT",
"author": "Marco Antonio Ghiani <[email protected]>",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"commit": "git cz",
"install:clean": "lerna clean --yes && rm -rf node_modules yarn.lock && yarn install",
"lint": "lerna run lint --stream",
"lint:package": "lerna run lint:package --stream",
"release": "lerna publish --yes",
"test": "lerna run test --stream",
"update:deps": "ncu -u && lerna run update:deps --stream"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"dependencies": {
"lint-staged": "^15.2.10"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/config-lerna-scopes": "^19.5.0",
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vitejs/plugin-react": "^4.3.4",
"babel-loader": "^9.2.1",
"commitlint": "^19.6.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"git-cz": "^4.9.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-localstorage-mock": "^2.4.26",
"lerna": "^8.1.9",
"lerna-changelog": "^2.2.0",
"npm-check-updates": "^17.1.11",
"prettier": "^3.4.1",
"rimraf": "^6.0.1",
"sort-package-json": "^2.12.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vite": "^6.0.2",
"vite-plugin-babel-macros": "^1.0.6",
"vite-tsconfig-paths": "^5.1.3"
},
"engines": {
"node": ">=18",
"yarn": ">=1.22.0"
}
}