-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.67 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
{
"name": "@mapy-cz-react/monorepo",
"private": true,
"description": "Mapy.cz API React wrapper",
"contributors": [
"Martin Machacek <[email protected]>"
],
"license": "MIT",
"main": "core/src/index.ts",
"unpkg": "core/dist/mapy-cz-react.umd.js",
"module": "core/es/mapy-cz-react.module.js",
"types": "core/types/index.d.ts",
"files": [
"core/types"
],
"workspaces": [
"core",
"website"
],
"scripts": {
"--- SCRIPTS": "----------------------------------------------------",
"build": "yarn core build",
"start": "yarn website start",
"lint": "eslint --ignore-path .gitignore ./",
"prepare": "husky install",
"test": "jest --passWithNoTests",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.{js,mdx,md,html,json}\"",
"--- WORKSPACES": "-------------------------------------------------",
"core": "yarn workspace mapy-cz-react",
"website": "yarn workspace mapy-cz-react-docs",
"--- PUBLISHING": "-------------------------------------------------",
"generateChangelog": "standard-version",
"prepublish": "yarn build",
"prepublishOnly": "yarn",
"lernaPublish": "yarn generateChangelog && lerna publish"
},
"peerDependencies": {
"react": ">=16.13.1",
"react-dom": ">=16.13.1"
},
"keywords": [
"react",
"reactjs",
"map",
"maps",
"mapy.cz",
"mapycz"
],
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "7.19.1",
"@babel/eslint-plugin": "7.19.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"babel-loader": "^9.1.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"eslint": "8.33.0",
"eslint-config-lundegaard": "^0.3.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"lerna": "^6.4.1",
"lint-staged": "^13.1.0",
"prettier": "2.8.3",
"standard-version": "^9.5.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"standard-version": {
"skip": {
"bump": true,
"commit": true,
"tag": true
}
}
}