This repository has been archived by the owner on Jun 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 199
/
package.json
84 lines (84 loc) · 2.92 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
{
"version": "0.5.0",
"private": true,
"workspaces": [
"packages/@statusfy/*",
"packages/demo",
"packages/docs",
"packages/statusfy",
"packages/website"
],
"description": "A marvelous open source Status Page system",
"author": {
"name": "Bazzite",
"email": "[email protected]",
"url": "https://www.bazzite.com"
},
"contributors": [
{
"name": "Julio Marquez (@juliomrqz)"
},
{
"name": "Patricia Mora (@patriciajumper)"
},
{
"name": "Claude Giovagnoli (@giovagnoli)"
}
],
"scripts": {
"lerna": "lerna",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"test:demo": "yarn run demo:build && yarn run demo:generate",
"test": "yarn run prepare && yarn run prepare-test && yarn run jest",
"prepare": "cross-env STATUSFY_LERNA=true lerna run prepare",
"prepare-test": "cross-env STATUSFY_LERNA=true lerna run prepare-test",
"jest": "cross-env STATUSFY_LERNA=true jest",
"update-readme": "cp -f README.md ./packages/statusfy/",
"publish-stable": "yarn update-readme && lerna publish --no-git-tag-version --force-publish '*'",
"publish-next": "lerna publish --no-git-tag-version --dist-tag next --force-publish '*'",
"postinstall": "lerna bootstrap",
"docs:dev": "yarn workspace statusfy-docs dev",
"docs:build": "yarn workspace statusfy-docs build",
"demo:build": "cross-env STATUSFY_LERNA=true yarn workspace statusfy-demo build",
"demo:dev": "cross-env STATUSFY_LERNA=true yarn workspace statusfy-demo dev",
"demo:generate": "cross-env STATUSFY_LERNA=true yarn workspace statusfy-demo generate",
"demo:start": "cross-env STATUSFY_LERNA=true yarn workspace statusfy-demo start",
"demo:delete-incident": "cross-env STATUSFY_LERNA=true yarn workspace statusfy-demo delete-incident",
"demo:update-incident": "cross-env STATUSFY_LERNA=true yarn workspace statusfy-demo update-incident",
"website:dev": "yarn workspace statusfy-website dev",
"website:generate": "yarn workspace statusfy-website generate",
"update-changelog": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s"
},
"devDependencies": {
"@babel/core": "7.7.5",
"@babel/plugin-transform-runtime": "7.7.6",
"@commitlint/cli": "8.2.0",
"@commitlint/config-conventional": "8.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"conventional-changelog-cli": "2.0.31",
"cross-env": "6.0.3",
"eslint": "6.7.2",
"eslint-loader": "3.0.3",
"eslint-plugin-jest": "23.1.1",
"eslint-plugin-vue": "6.0.1",
"glob-promise": "3.4.0",
"husky": "3.1.0",
"jest": "24.9.0",
"jest-serializer-vue": "2.0.2",
"lerna": "3.19.0",
"vue-jest": "3.0.5"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn run lint"
}
}
}