-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
67 lines (67 loc) · 2.11 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
{
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/EDAVisualiser.git"
},
"bugs": {
"url": "https://github.com/asyncapi/EDAVisualiser/issues"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"start": "lerna exec --parallel -- npm run start",
"test": "cd library && npm test",
"build": "cd library && npm run prepare",
"lint": "prettier --check \"**/*.{ts,tsx,js,jsx,json,html,css,yaml}\" && tslint -c ./tslint.json --project tsconfig.base.json --format verbose",
"lint:fix": "prettier --write '**/*.{ts,tsx,js,jsx,json,html,css,yaml}' && tslint -c ./tslint.json --project tsconfig.base.json --format verbose --fix",
"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:lib:version": "cd library && npm --no-git-tag-version --allow-same-version version $VERSION",
"bump:version": "npm run bump:lib:version",
"get:name": "cd library && npm run get:name",
"get:version": "cd library && npm run get:version",
"predeploy": "npm run build",
"deploy": "cd examples/simple-react && npm run deploy"
},
"devDependencies": {
"@types/jest": "^29.2.2",
"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.32.2",
"prettier": "^1.18.2",
"tslib": "^1.10.0",
"tslint": "^5.20.1",
"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"
}
},
"dependencies": {
"jest": "^29.7.0"
}
}