-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.38 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.38 KB
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
{
"name": "dynamic-module-federation",
"version": "0.4.0",
"description": "Tool for importing module federated components/apps at runtime",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
"browser": "dist/umd/index.js",
"types": "dist/dynamic-module-federation.d.ts",
"files": [
"dist/*"
],
"scripts": {
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint --fix src/** --ignore-path .gitignore",
"lint:prettier": "pretty-quick",
"test": "echo \"no tests found\" && exit 0",
"build": "rollup -c --environment NODE_ENV:production",
"cm": "cz"
},
"keywords": [
"React",
"module federation",
"webpack",
"hooks"
],
"author": "Trio team - ABC Utils",
"repository": {
"type": "git",
"url": "https://github.com/abc-utils/dynamic-module-federation.git"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@commitlint/config-conventional": "^18.6.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/react": "^18.0.26",
"commitizen": "^4.3.0",
"commitlint": "^18.6.0",
"console-browserify": "1.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"husky": "^9.0.7",
"lint-staged": "^15.2.1",
"prettier": "^3.2.4",
"react": "^18.2.0",
"rollup": "^2.75.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"semantic-release": "20.1.0",
"typescript": "^5.3.3",
"typescript-eslint": "^7.1.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}