-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
84 lines (84 loc) · 2.62 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
{
"name": "hel",
"version": "4.9.11",
"description": "",
"keywords": [],
"author": "fantasticsoul",
"main": "index.js",
"scripts": {
"build": "npm run build_hel && npm run build_proxy && npm run build_core",
"build_core": "pnpm --filter=hel-micro-core run build",
"build_hel": "pnpm --filter=hel-micro run build",
"build_proxy": "pnpm --filter=hel-lib-proxy run build",
"commitlint": "commitlint -e $HUSKY_GIT_PARAMS",
"cpdoc": "rm -rf ../my-opensource/hel-gh-pages/* && cp -r ./doc/build/* ../my-opensource/hel-gh-pages",
"doc": "pnpm --filter=hel-doc run build && npm run cpdoc",
"format": "prettier --cache --write . '!./pnpm-lock.yaml' '!./doc/src/components' --ignore-path .gitignore --ignore-unknown",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --cache --write"
],
"*.ts?(x)": [
"prettier --cache --parser=typescript --write"
]
},
"dependencies": {
"@docusaurus/types": "^2.4.1",
"@jest/transform": "29",
"@types/node": ">=12.0.0",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"hel-html-parser": "workspace:*",
"hel-lib-proxy": "workspace:*",
"hel-micro": "workspace:*",
"hel-micro-core": "workspace:*",
"hel-micro-react": "workspace:*",
"hel-types": "workspace:*",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-is": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "27.5.2",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"jest": "28.1.3",
"jest-environment-jsdom": "27.5.1",
"lint-staged": "^10.5.3",
"prettier": "npm:@btmills/prettier@^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"prettier-plugin-packagejson": "^2.2.18",
"resolve": "^1.22.1",
"rollup": "^2.23.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "28.0.8",
"tslib": "^1.14.1",
"turbo": "1.5.3",
"typescript": "4.8.3"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"pnpm": {
"overrides": {
"@types/react": "<18.0.0",
"@types/react-dom": "<18.0.0"
}
}
}