-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 1.96 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
{
"private": true,
"name": "core-react",
"workspaces": [
"packages/*"
],
"description": "Front-End application framework base on react an redux",
"scripts": {
"reinstall": "rm -rf node_modules && rm -rf yarn.lock && yarn install && yarn clean && yarn bootstrap",
"update": "yarn install && yarn clean && yarn bootstrap",
"lerna": "lerna",
"bootstrap": "lerna bootstrap",
"clean": "lerna clean --yes",
"eslint": "eslint . --fix",
"build": "node scripts/build.js",
"jest": "jest --config config/jest.json --coverage",
"format": "prettier --config config/prettier.json --write \"packages/**/*.{ts,tsx}\"",
"v": "lerna version --exact --conventional-commits --yes"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run build"
}
},
"lint-staged": {
"*.@(tsx|ts)": [
"yarn eslint",
"yarn format",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vocoWone/reaux.git"
},
"keywords": [
"javascript",
"typescript"
],
"author": "vocoWone",
"license": "MIT",
"bugs": {
"url": "https://github.com/vocoWone/reaux/issues"
},
"homepage": "https://github.com/vocoWone/reaux#readme",
"devDependencies": {
"@types/jest": "~29.2.0",
"@types/node": "~18.11.2",
"@types/react-test-renderer": "~18.0.0",
"@typescript-eslint/eslint-plugin": "~5.40.1",
"@typescript-eslint/parser": "~5.40.1",
"babel-jest": "~29.2.1",
"chalk": "~4.1.2",
"codecov": "~3.8.3",
"eslint": "~8.25.0",
"eslint-plugin-prettier": "~4.2.1",
"eslint-plugin-react": "~7.31.10",
"eslint-plugin-react-hooks": "~4.6.0",
"fs-extra": "~10.1.0",
"husky": "~4.3.8",
"jest": "~29.2.1",
"lerna": "~6.0.1",
"lint-staged": "^12.3.4",
"prettier": "~2.7.1",
"react-test-renderer": "~18.2.0",
"ts-jest": "~29.0.3",
"ts-node": "~10.9.1",
"tslib": "~2.4.0",
"typescript": "~4.8.4"
}
}