forked from juliomrqz/statusfy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.81 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
{
"version": "0.2.1",
"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",
"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/",
"update-version": "lerna publish --skip-git --skip-npm --force-publish '*'",
"pre-release": "yarn run update-readme && yarn run update-version",
"install-dependencies": "yarn install && 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",
"website:dev": "yarn workspace statusfy-website dev",
"website:generate": "yarn workspace statusfy-website generate && mv ./packages/website/dist/es/.html ./packages/website/dist/es.html",
"update-changelog": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@commitlint/cli": "^7.2.0",
"@commitlint/config-conventional": "^7.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"conventional-changelog-cli": "^2.0.11",
"cross-env": "^5.2.0",
"eslint": "^5.6.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-vue": "^4.7.1",
"glob-promise": "^3.4.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"jest-serializer-vue": "^2.0.2",
"lerna": "^3.4.3",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"node-sass": "^4.10.0",
"regenerator-runtime": "~0.12.1",
"sass-loader": "^7.1.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-jest": "^3.0.0"
},
"engines": {
"node": ">=8.10",
"npm": ">=5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn run lint"
}
}
}