-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
82 lines (82 loc) · 2.59 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
{
"name": "merkur-monorepo",
"description": "Merkur is library for creating micro frontend with server side rendering. ",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-run": "^3.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"commitizen": "^4.3.1",
"coveralls": "^3.1.1",
"es-check": "^7.2.1",
"eslint": "8.57.0",
"eslint-config-last": "^0.0.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jasmine": "^4.2.2",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"git-cz": "^4.9.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rollup": "^4.24.4",
"to-mock": "^1.6.2",
"tslib": "^2.8.1",
"typescript": "^5.6.3"
},
"scripts": {
"test": "lerna run test",
"test:es:version": "lerna run test:es:version",
"test:release": "utils/CIRelease.sh",
"build": "lerna run build",
"release": "lerna version --force-publish @merkur/create-widget",
"release:publish": "lerna publish from-git --yes",
"lint:cmd": "eslint -c ./.eslintrc.js --ignore-path ./.prettierignore --no-eslintrc",
"lint": "npm run lint:cmd -- './**/*.{mjs,cjs,js,jsx}'",
"lint:fix": "npm run lint -- --fix",
"stylelint:fix": "npm run stylelint -- --fix",
"commit": "git-cz",
"version": "node utils/bumpVersion.js && node utils/copyReadme.js && git add packages/create-widget/template/package.json && git add packages/**/README.md",
"prepare": "husky"
},
"author": "Miroslav Jancarik <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mjancarik/merkur.git"
},
"bugs": {
"url": "https://github.com/mjancarik/merkur/issues"
},
"lint-staged": {
"**/*.{js,jsx}": "npm run lint:cmd"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"workspaces": [
"packages/*"
]
}