-
-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
65 lines (65 loc) · 2.38 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
{
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/asyncapi-react.git"
},
"author": {
"name": "The AsyncAPI maintainers",
"url": "https://www.asyncapi.com"
},
"bugs": {
"url": "https://github.com/asyncapi/asyncapi-react/issues"
},
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
},
"workspaces": [
"library",
"playground",
"web-component"
],
"scripts": {
"clean": "lerna clean",
"start": "lerna exec --parallel -- npm run start",
"test": "cd library && npm test",
"build": "npm run build:library && npm run build:webcomponent && npm run build:playground",
"build:library": "cd library && npm run prepare",
"build:webcomponent": "cd web-component && npm run bundle",
"build:playground": "cd playground && npm run build",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint --max-warnings 0 . --fix && npm run format",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,html,css,yaml,yml}\"",
"markdownlint": "markdownlint **/*.md",
"prepublishOnly": "npm run build",
"gen-readme-toc": "markdown-toc -i README.md",
"generate:assets": "npm run gen-readme-toc",
"bump:webcomp:version": "cd web-component && npm --no-git-tag-version --allow-same-version version $VERSION",
"bump:lib:version": "cd library && npm --no-git-tag-version --allow-same-version version $VERSION",
"bump:version": "npm run bump:lib:version && npm run bump:webcomp:version && npm run install:reactcomp:webcomponent",
"install:reactcomp:webcomponent": "cd web-component && npm run install:reactcomp",
"get:name": "cd library && npm run get:name",
"get:version": "cd library && npm run get:version"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/eslint-plugin-tslint": "^7.0.2",
"@typescript-eslint/parser": "^7.7.1",
"concurrently": "^6.0.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-sonarjs": "^0.25.1",
"lerna": "^8.1.2",
"markdown-toc": "^1.2.0",
"markdownlint-cli": "^0.17.0",
"prettier": "^3.2.5",
"tslib": "^1.10.0",
"typescript": "^5.3.3"
}
}