-
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
{
"private": true,
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"scripts": {
"commit": "git-cz",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"prebuild": "run-p clean lint",
"prerelease": "yarn lint && yarn clean && yarn build",
"clean:icons": "rimraf packages/icons/*.d.ts packages/icons/*.js packages/icons/utils",
"release": "cd packages/*/lib && lerna publish",
"test": "jest --coverage --detectOpenHandles",
"clean:other": "rimraf packages/**/lib",
"clean": "run-p clean:icons clean:other",
"lint:ts": "eslint 'packages/**/*.ts{,x}'",
"lint:ts:fix": "eslint 'packages/**/*.ts{,x}' --fix",
"lint": "yarn lint:ts"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@emotion/core": "^11.0.0",
"@types/enzyme": "^3.10.12",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^28.1.1",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"babel-jest": "^28.1.1",
"babel-loader": "^8.2.5",
"commitizen": "^4.2.4",
"cz-lerna-changelog": "^2.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-styled-components": "^7.0.8",
"lerna": "^5.0.0",
"lint-staged": "^13.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-test-renderer": "^18.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
},
"author": "Asher Nguyen <phucnguyenhoang1985@gmail.com>",
"license": "MIT"
}