-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.46 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
78
79
80
81
82
83
84
{
"name": "root",
"private": true,
"devDependencies": {
"@babel/core": "^7.17.10",
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.11",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^27.5.1",
"babel-loader": "^8.2.5",
"lerna": "^4.0.0",
"lint-staged": "^12.4.1",
"commitizen": "^4.2.4",
"husky": "^8.0.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^28.1.0",
"jest-circus": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-fetch-mock": "^3.0.3",
"jest-styled-components": "^7.0.8",
"ts-dedent": "^2.2.0",
"ts-jest": "^28.0.2",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"git-cz": "^4.8.0",
"madge": "^5.0.1",
"@types/node": "^17.0.31"
},
"dependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0",
"turbo": "^1.2.8",
"typescript": "^4.6.4"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:ci": "jest --maxWorkers=2 --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "turbo run build",
"prepublish": "node ./prepublish.js",
"create-version": "lerna version --conventional-commits",
"lint": "eslint --quiet --ext .ts --ext .tsx packages/",
"prettier": "prettier --write 'packages/**/*.{js,ts,tsx,json}'",
"madge": "madge --circular packages/**/* --extensions js,ts,tsx,json --exclude typings --debug"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn madge",
"yarn prettier",
"eslint --fix",
"git add *"
]
},
"workspaces": [
"packages/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}