forked from asyncapi/asyncapi-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.82 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
{
"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"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"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 prepare",
"build:playground": "cd playground && npm run build",
"lint": "tslint -c ./tslint.json --project tsconfig.base.json --format verbose && prettier --check \"**/*.{ts,tsx,js,jsx,json,html,css,yaml}\"",
"lint:fix": "tslint -c ./tslint.json --project tsconfig.base.json --format verbose --fix && prettier --write \"**/*.{ts,tsx,js,jsx,json,html,css,yaml}\"",
"conflict-check": "tslint-config-prettier-check ./tslint.json",
"markdownlint": "markdownlint **/*.md",
"postinstall": "npm run bootstrap",
"prepublishOnly": "npm run build",
"gen-readme-toc": "markdown-toc -i README.md",
"generate:assets": "npm run gen-readme-toc",
"bump:playground:version": "cd playground && npm --no-git-tag-version --allow-same-version version $VERSION",
"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 bump:playground:version && npm run install:reactcomp:webcomponent && npm run install:reactcomp:playground",
"install:reactcomp:playground": "cd playground && npm run install:reactcomp",
"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": {
"concurrently": "^6.0.1",
"husky": "^2.4.1",
"lerna": "^3.22.1",
"lint-staged": "^8.2.1",
"markdown-toc": "^1.2.0",
"markdownlint-cli": "^0.17.0",
"prettier": "^1.18.2",
"react-split": "^2.0.9",
"tslib": "^1.10.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"tslint-react-hooks": "^2.1.1",
"typescript": "^4.0.0"
},
"lint-staged": {
"linters": {
"**/*.{ts,tsx,js,jsx,json,css,html,yaml}": [
"prettier --write",
"git add"
]
},
"ignore": [
"package.json",
"package-lock.json"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}