-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.01 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
{
"name": "ims-monorepo-template",
"version": "1.0.0",
"private": true,
"keywords": [
"monorepo",
"template"
],
"description": "a monorepo and docs template",
"homepage": "https://github.com/eternallycyf/ims-monorepo-template#readme",
"bugs": {
"url": "https://github.com/eternallycyf/ims-monorepo-template"
},
"repository": "git+https://github.com/eternallycyf/ims-monorepo-template.git",
"license": "MIT",
"author": "eternallycyf([email protected])",
"workspaces": [
"packages/*"
],
"sideEffects": [
"**/*.less"
],
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"build": "lerna run build --parallel",
"clean": "lerna run clean && rm -rf es lib dist build coverage .umi .eslintcache apis",
"doctor": "lerna run doctor",
"postinstall": "npm run build",
"lint": "npm run lint-eslint && npm run tsc",
"lint-eslint": "eslint --cache --fix --ext .js,.jsx,.ts,.tsx packages/**/src",
"lint-staged": "lint-staged",
"lint-staged:js": "eslint --cache --ext .js,.jsx,.ts,.tsx",
"lint-styles": "stylelint",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx ",
"prepare": "husky install",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"release": "multi-semantic-release",
"release:local": "multi-semantic-release --no-ci",
"test": "jest",
"test:coverage": "jest --coverage",
"tsc": "tsc -p tsconfig-check.json",
"check-error": "npm run lint && npm run test && npm run test:coverage && npm run doctor"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@babel/runtime": "^7.23.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"ts-jest": "^29",
"ts-node": "^10",
"@types/jest": "^29",
"@types/node": "^16",
"@types/semantic-release": "^17",
"@types/sinon": "^10.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"semantic-release": "^19.0.5",
"semantic-release-config-gitmoji": "^1.5.3",
"multi-semantic-release": "^3",
"@commitlint/cli": "^17",
"babel-plugin-add-module-exports": "^1",
"eslint": "^8",
"father": "^4",
"husky": "^8",
"commitlint-plugin-gitmoji": "^2.2.6",
"commitlint-config-gitmoji": "^2.3.1",
"conventional-changelog-gitmoji-config": "^1",
"lint-staged": "^13",
"prettier": "^2.2.1",
"prettier-plugin-organize-imports": "^3",
"prettier-plugin-packagejson": "^2",
"@umijs/max": "^4",
"@umijs/test": "^4",
"@testing-library/react": "^14",
"jest": "^29",
"jsdom": "^21",
"jest-environment-jsdom": "^28.1.3",
"lerna": "^4.0.0",
"typescript": "^4.1.3",
"dumi-theme-antd-style": "latest",
"ims-template-config": "latest",
"mockjs": "^1.1.0",
"lodash": "^4.17.21",
"@types/lodash": "^4.14.199",
"dumi": "latest",
"antd": "^5",
"@ant-design/icons": "^5.2.6"
}
}