-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.57 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
{
"name": "root",
"private": true,
"license": "MIT",
"scripts": {
"test": "jest",
"commit": "npx git-cz",
"prepare": "husky install",
"lerna:link": "lerna bootstrap",
"lerna:changed": "lerna changed",
"lerna:build": "lerna run build",
"test:coverage": "jest --coverage",
"storybook:build": "build-storybook",
"lint": "eslint . --ext .js,.ts,.tsx",
"test:watch": "jest --watch --watchAll",
"up": "yarn upgrade-interactive --latest",
"format": "prettier \"./**/*.{ts,tsx,js,json,md}\"",
"lerna:publish": "lerna publish --no-git-tag-version",
"storybook:start": "start-storybook -p 6006 -c .storybook",
"lerna:version": "lerna version --conventional-commits --no-push --exact",
"test:coverage:summary": "jest --coverage --coverageReporters='text-summary'"
},
"scripty": {
"path": "./scripts/workspace"
},
"workspaces": [
"packages/*"
],
"eslintIgnore": [
"node_modules",
"packages/*/**/dist"
],
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-private-property-in-object": "^7.15.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@babel/preset-env": "7.15.8",
"@storybook/addon-a11y": "^6.4.0",
"@storybook/addon-actions": "^6.4.0",
"@storybook/addon-essentials": "^6.4.0",
"@storybook/react": "^6.4.0",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.3",
"@types/jest-axe": "^3.5.3",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/storybook__react": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-loader": "^8.1.0",
"commitizen": "^4.2.4",
"eslint": "^7.32.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-axe": "^5.0.1",
"lerna": "^4.0.0",
"mkdirp": "^1.0.4",
"prettier": "^2.5.0",
"react-docgen-typescript-loader": "^3.7.2",
"rimraf": "^3.0.2",
"scripty": "^2.0.0",
"ts-jest": "^27.0.7",
"ts-loader": "8.3.0",
"typescript": "^4.4.4",
"webpack": "5.64.4",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}