-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.3 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "chayns-toolkit",
"version": "3.0.2",
"description": "A zero-config toolchain for developing chayns® apps.",
"keywords": [
"chayns",
"react",
"chayns-components",
"webpack"
],
"homepage": "https://github.com/TobitSoftware/chayns-toolkit#readme",
"bugs": {
"url": "https://github.com/TobitSoftware/chayns-toolkit/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/TobitSoftware/chayns-toolkit.git",
"directory": "packages/chayns-toolkit"
},
"license": "MIT",
"author": {
"name": "Leonhard Driesch",
"email": "[email protected]"
},
"bin": {
"chayns-toolkit": "./cli.js"
},
"files": [
"lib/*",
"eslint/*",
"cli.js",
"babel.js"
],
"scripts": {
"build": "node ./scripts/build",
"build-docs": "npm --prefix website i && npm --prefix website run build",
"check-types": "tsc --noEmit",
"dev": "node ./scripts/watch",
"format": "prettier . --write",
"lint": "eslint src/ --ext js,jsx,ts,tsx",
"prepare": "husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks",
"prepublishOnly": "npm run build",
"test": "jest"
},
"dependencies": {
"@babel/preset-env": "^7.25.8",
"@babel/preset-react": "^7.25.7",
"@chayns-toolkit/eslint-config": "^2.0.2",
"@module-federation/enhanced": "^0.6.10",
"@module-federation/node": "^2.5.20",
"@rsbuild/core": "^1.0.11",
"@rsbuild/plugin-assets-retry": "^1.0.1",
"@rsbuild/plugin-css-minimizer": "^1.0.2",
"@rsbuild/plugin-node-polyfill": "^1.0.4",
"@rsbuild/plugin-react": "^1.0.3",
"@rsbuild/plugin-sass": "^1.0.2",
"@rsbuild/plugin-svgr": "^1.0.3",
"@rspack/core": "^1.0.8",
"@testing-library/jest-dom": "^5.15.1",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"ajv": "^8.17.1",
"dotenv": "^16.4.5",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-airbnb-typescript": "^16.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "^5.5.0 <5.5.4",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.4.5",
"pnpapi": "^0.0.0",
"postcss": "^8.4.4",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.2.1",
"postcss-prefix-selector": "^1.14.0",
"postcss-preset-env": "^7.0.1",
"react-refresh": "^0.11.0",
"sass": "^1.43.5",
"sass-loader": "^12.3.0",
"serve-handler": "^6.1.5",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"webpack": "^5.95.0"
},
"devDependencies": {
"@types/eslint": "^8.2.0",
"@types/node": "^16.11.10",
"@types/semver": "^7.3.9",
"chalk": "^4.1.2",
"commander": "^8.3.0",
"esbuild": "^0.24.0",
"fast-glob": "^3.2.7",
"fs-extra": "^10.0.0",
"husky": "^7.0.4",
"mock-fs": "^5.1.2",
"prettier": "^2.5.0",
"prettier-plugin-packagejson": "^2.2.15",
"pretty-quick": "^3.1.2",
"semver": "^7.3.5",
"shx": "^0.3.3",
"type-fest": "^2.6.0",
"typescript": "^4.5.2",
"yup": "0.32.11"
},
"engines": {
"node": ">=20.10.0"
},
"publishConfig": {
"access": "public"
}
}