-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.76 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
{
"name": "@autoviews/root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"commit": "cz",
"prepare": "is-ci || husky install",
"build": "lerna run build --stream --parallel",
"test": "lerna run test --stream --parallel",
"clear": "lerna run clear --stream --parallel",
"lint": "lerna run lint --stream --parallel",
"release": "lerna publish -y",
"format": "prettier --write --ignore-path .gitignore ."
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@regru/eslint-plugin-prefer-early-return": "^1.0.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@types/json-pointer": "^1.0.31",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-jest": "^27.5.0",
"commitizen": "^4.2.4",
"confusing-browser-globals": "^1.0.11",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.5",
"fast-glob": "^3.2.9",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jest": "^27.5.0",
"lerna": "^5.0.0",
"lint-staged": "^12.3.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}