-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "github-fresco",
"version": "0.0.2",
"description": "Automatic commit and push to make your github contribution green",
"author": "promet99@github",
"license": "ISC",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/promet99/github-fresco.git"
},
"scripts": {
"commit": "pnpm cz",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"tsc": "turbo run tsc",
"start": "turbo run start",
"start:cli": "turbo build --filter=cli && pnpm --filter \"cli\" start",
"dev:web": "turbo build --filter=cli && pnpm --filter \"web\" dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"hook:preCommit": "turbo run lint tsc && pretty-quick --staged",
"hook:prePush": "turbo run lint tsc"
},
"devDependencies": {
"commitizen": "^4.2.6",
"cz-emoji-conventional": "^1.0.1",
"eslint-config-custom": "workspace:*",
"husky": "^8.0.0",
"prettier": "latest",
"pretty-quick": "^3.1.3",
"tsconfig": "workspace:*",
"turbo": "^1.6.3"
},
"engines": {
"node": ">=14.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-emoji-conventional"
}
}
}