-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.33 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
{
"name": "cb-react-micro-frontend",
"version": "0.0.36",
"description": "Reusable functions for setting up micro-frontends and containers",
"author": "Hien CB",
"repository": "https://github.com/ICodeMyOwnLife/cb-react-micro-frontend.git",
"license": "MIT",
"private": false,
"source": "src/index.ts",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"sideEffects:": false,
"scripts": {
"build": "rollup -c rollup/rollup.config.js",
"build:config": "tsc -p rollup",
"commit": "git-cz",
"format": "prettier --write \"src/**/*.{ts,tsx,md}\"",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "yarn lint --fix",
"prebuild": "del dist",
"release": "release-it",
"size": "size-limit",
"type-check": "tsc --noEmit"
},
"dependencies": {
"cb-react-micro-frontend-core": "^0.0.5",
"cb-toolset": "^0.2.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@rollup/plugin-node-resolve": "^8.0.0",
"@size-limit/preset-small-lib": "^4.5.0",
"@types/js-cookie": "^2.2.6",
"@types/node": "^14.0.5",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/react-router-dom": "^5.1.5",
"cb-rollup-plugin-filesize": "^9.0.0-5",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"del-cli": "^3.0.1",
"eslint": "^7.0.0",
"eslint-config-react-ts": "^2.1.0",
"husky": "^4.2.3",
"lint-staged": "^10.2.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"release-it": "^13.6.1",
"rollup": "^2.10.5",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-typescript2": "^0.27.1",
"size-limit": "^4.5.0",
"typescript": "^3.9.3"
},
"peerDependencies": {
"react": "> 16.8.0",
"react-dom": "> 16.8.0",
"react-router-dom": "^5.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn type-check && yarn lint-staged && yarn size"
}
},
"lint-staged": {
"{*.{json,md}}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"yarn lint:fix"
]
},
"engines": {
"node": ">=12.0.0"
}
}