forked from gmpetrov/databerry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.08 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
{
"name": "chaindesk",
"version": "0.1.65",
"private": true,
"scripts": {
"prepare": "husky install",
"start": "next start",
"dev": "FORCE_COLOR=1 pnpm docker:up && turbo run dev --filter=dashboard... --parallel --no-cache",
"build": "FORCE_COLOR=1 turbo run build --filter=dashboard... --filter=!react-email-client --parallel",
"dotenv": "dotenv -e .env.local",
"typecheck": "FORCE_COLOR=1 turbo typecheck",
"lint": "FORCE_COLOR=1 turbo run lint --filter=!react-email-client",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"check": "pnpm list-mismatches && pnpm format && pnpm typecheck && pnpm lint",
"docker:up": "docker compose -f docker/docker-compose.deps.yml --env-file docker/docker.env up -d",
"docker:down": "docker compose -f docker/docker-compose.deps.yml down",
"docker:build:up": "docker compose -f docker/docker-compose.build.yml --env-file docker/docker.env up",
"docker:nuke": "docker compose -f docker-compose.dev.yml down --volumes --remove-orphans",
"list-packages": "npx syncpack list",
"list-mismatches": "npx syncpack list-mismatches",
"fix-mismatches": "npx syncpack fix-mismatches && pnpm install",
"changelog": "git fetch --all && gitmoji-changelog",
"commit": "git-cz",
"release": "release-it"
},
"config": {
"commitizen": {
"path": "node_modules/cz-emoji"
}
},
"release-it": {
"git": {
"requireUpstream": false,
"commit": true,
"tag": true,
"push": true,
"tagAnnotation": "🔖 ${version}"
},
"hooks": {
"after:bump": "npm run changelog && git add CHANGELOG.md"
}
},
"devDependencies": {
"cz-emoji": "1.3.2-canary.2",
"dotenv-cli": "^7.1.0",
"eslint": "8.36.0",
"git-cz": "^4.9.0",
"gitmoji-changelog": "^2.3.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "2.8.4",
"release-it": "^16.1.5",
"syncpack": "^11.2.1",
"terminate": "^2.6.1",
"ts-node": "^10.9.1",
"tsc-files": "^1.1.4",
"tsx": "^3.13.0",
"turbo": "^1.10.14"
},
"packageManager": "[email protected]"
}