-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
100 lines (100 loc) · 2.43 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"boot": "lerna bootstrap",
"start:editor": "start-storybook --port 49521",
"release:v": "lerna version",
"release:p": "yarn boot && lerna publish from-package",
"release": "yarn release:v && yarn release:p",
"commit": "git-cz",
"lint": "eslint --cache --cache-location=.cache/eslint --ext .ts,.tsx,.js,.jsx --report-unused-disable-directives packages/",
"lint:fix": "yarn lint -- --fix",
"test": "jest"
},
"author": {
"name": "melody-yangjie",
"email": "[email protected]",
"url": "https://github.com/melodyJie"
},
"license": "MIT",
"homepage": "https://github.com/foxpage/foxpage-component-framework",
"repository": {
"type": "git",
"url": "https://github.com/foxpage/foxpage-component-framework"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
],
"*.ts": [
"npm run lint:fix",
"git add"
],
"*.tsx": [
"npm run lint:fix",
"git add"
]
},
"dependencies": {
"lerna": "^4.0.0",
"lodash": "^4.17.21",
"typescript": "^4.3.2"
},
"eslintIgnore": [
"node_modules",
"examples",
"dist",
"lib",
"es",
"config",
"babel.config.js",
"jest.config.js",
"commitlint.config.js",
"*.js"
],
"devDependencies": {
"@commitlint/config-angular": "^8.1.0",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.170",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-eslint": "^10.1.0",
"commitizen": "^3.1.0",
"commitlint": "^8.1.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"express": "^4.17.1",
"git-cz": "^4.7.6",
"husky": "^4.3.8",
"jest": "^26.4.2",
"lint-staged": "^9.2.5",
"prettier": "^2.3.1",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"standard-version": "^9.3.0",
"ts-jest": "^26.3.0"
},
"resolutions": {
"@types/react": "^16.14.11"
}
}