-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.67 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.67 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "lerna-sdk-template",
"private": true,
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"scripts": {
"prepare": "husky install",
"commit": "git add . && commit",
"dev": "lerna run dev --parallel",
"lib": "lerna run lib --parallel",
"lint": "lerna run lint --parallel",
"lint-fix": "lerna run lint-fix --parallel",
"release": "yarn run lib && lerna publish from-package",
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean --parallel",
"plop": "plop --plopfile ./plop/index.js"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/prompt-cli": "^17.0.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^13.5.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.1",
"@types/jest": "^27.5.1",
"@types/node": "^16.11.36",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vitejs/plugin-legacy": "^2.0.0",
"@vitejs/plugin-react": "^2.0.0",
"eslint": "^8.16.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "^7.30.0",
"husky": "^8.0.1",
"lerna": "^5.5.0",
"lint-staged": "^13.0.3",
"mockjs": "^1.1.0",
"plop": "^3.1.1",
"prettier": "^2.6.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"rimraf": "^3.0.2",
"rollup-plugin-visualizer": "^5.7.1",
"shelljs": "^0.8.5",
"standard-version": "^9.5.0",
"ttypescript": "^1.5.13",
"typescript": "^4.7.2",
"typescript-transform-paths": "^3.3.1",
"vite": "^3.0.4",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-mock": "^2.9.6",
"web-vitals": "^2.1.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "https://jihulab.com/elihr/elifront/open/lerna-avocado-sdk.git"
}
}