-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
75 lines (75 loc) · 2.32 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
{
"name": "rex-design",
"version": "0.2.0",
"private": true,
"scripts": {
"start:story": "yarn workspace story start",
"start:doc": "yarn workspace doc start",
"start:demo": "yarn workspace demo start",
"build:core": "yarn workspace @rexd/core build",
"build:story": "yarn workspace story build",
"build:doc": "yarn workspace doc build",
"test": "jest",
"test:watch": "yarn workspace @rexd/core test:watch",
"postinstall": "is-ci || husky install",
"version": "lerna version --conventional-commits",
"clean": "lerna clean && rm -rf node_modules",
"update": "yarn run clean && yarn --registry https://registry.npmmirror.com"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"@types/react": "17.0.43",
"terser": "5.12.1",
"react-docgen-typescript": "2.2.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.1.0",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.15",
"@types/react-is": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "7.1.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-jest-dom": "^3.6.3",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"husky": "^6.0.0",
"is-ci": "^3.0.0",
"jest": "^27.5.1",
"jest-styled-components": "^7.0.8",
"lerna": "^4.0.0",
"lint-staged": "^10.5.3",
"prettier": "^2.1.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"dependencies": {}
}