-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
{
"name": "@icese7en/configs",
"version": "1.1.0",
"private": true,
"description": "",
"keywords": [],
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "index.js",
"scripts": {
"lint": "eslint packages",
"prepare": "husky install",
"recursive-update-modules": "pnpm run",
"release": "pnpm lint && lerna publish"
},
"lint-staged": {
"*.{json,md}": "prettier --write",
"!(test)/**/*.js": "eslint --fix",
".*.js": "eslint --fix",
"package.json": "sort-package-json"
},
"prettier": "@icese7en/prettier-config",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@icese7en/eslint-config": "workspace:*",
"@icese7en/eslint-config-prettier": "workspace:*",
"@icese7en/eslint-config-prettier-react": "workspace:*",
"@icese7en/eslint-config-prettier-typescript-react": "workspace:*",
"@icese7en/eslint-config-react": "workspace:*",
"@icese7en/eslint-config-typescript": "workspace:*",
"@icese7en/prettier-config": "workspace:*",
"@icese7en/tsconfig": "workspace:*",
"@lerna-lite/cli": "^2.4.2",
"@lerna-lite/publish": "^2.4.3",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "~2.8.8",
"sort-package-json": "^2.5.0",
"typescript": "^5.1.6"
},
"packageManager": "pnpm@7.5.0"
}