This repository has been archived by the owner on Oct 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.93 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
87
88
89
90
{
"name": "@alekseew/crossbilly",
"version": "0.1.0",
"description": "Project to generate a Web- (PWA), Cross-Platform-App for invoice / bill / customer data ... [Web App (PWA), iOS, Android, Windows and Mac OS X]",
"author": "Michael Alekseew",
"license": "MIT",
"keywords": [
"invoice",
"bill",
"customer",
"pwa",
"cross-platform",
"capacitor",
"cordova",
"electron",
"web",
"app",
"angular",
"giflow",
"typescript",
"angular-material",
"angular-cdk",
"prettier",
"standard-version",
"commitizen",
"husky",
"lottie",
"lottie-web",
"animations",
"firebase"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Mischa1610/crossBILLy.git"
},
"bugs": {
"url": "https://github.com/Mischa1610/crossBILLy/issues"
},
"homepage": "https://github.com/Mischa1610/crossBILLy#readme",
"engines": {
"node": ">=8.11.3",
"npm": ">=5.6.0"
},
"scripts": {
"firebase": "firebase",
"preinstall": "test -d .git/hooks || mkdir -v .git/hooks",
"postinstall": "npm run prepare-git-commit-template && wip with commitizen && cd webapp && npm install",
"prepare-git-commit-template": "echo '<type:[feat,fix,docs,style,refactor,perf,test,build,chore]>(<scope?>): <subject>\n\n<body?>\n\n<footer?>' > .gitmessage.txt && git config commit.template $PWD/.gitmessage.txt",
"format-staged": "pretty-quick --staged",
"format-check": "prettier --config ./.prettierrc --list-different './**/*{.ts,.js,.json,.css,.scss}'",
"commit-wip": "wip",
"commit-squash": "naenae",
"commit": "git-cz",
"test": "cd webapp && npm run lint && npm run test && npm run e2e",
"release": "standard-version",
"build": "cd webapp && npm run build -- --prod",
"git-clean-repo": "git clean -fdx && git submodule foreach git clean -fdx",
"clean-project": "mv .idea ../ && npm run git-clean-repo && mv ../.idea ./"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "run-s format-staged"
}
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"commitizen": "^4.0.0",
"cz-conventional-changelog": "^3.0.0",
"firebase-tools": "^7.0.0",
"husky": "^3.0.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.7",
"pretty-quick": "^1.6.0",
"standard-version": "^7.0.0",
"wip": "^1.3.0"
}
}