-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "@chi/source",
"version": "1.0.0",
"description": "CHINIBYUO",
"scripts": {
"start": "dotenv -- turbo run start",
"dev": "NODE_ENV=development dotenv -- turbo run dev",
"build": "NODE_ENV=production dotenv -- turbo run build",
"lint": "biome check",
"format": "biome format --write",
"db:migrate": "dotenv -- turbo run db:migrate",
"db:migrate:dev": "dotenv -- turbo run db:migrate:dev --ui=tui",
"studio": "dotenv -- turbo run studio",
"db:migrate:deploy": "dotenv -- turbo run db:migrate:deploy",
"db:generate": "dotenv -- turbo run db:generate",
"db:push": "dotenv -- turbo run db:push",
"db:migrate:reset": "dotenv -- turbo run db:migrate:reset",
"commit": "git-cz"
},
"keywords": [],
"author": "Jhonathan M.",
"license": "ISC",
"engines": {
"node": ">=20.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"installConfig": {
"hoistingLimits": "none"
},
"dependencies": {
"turbo": "^2.3.3",
"dotenv-cli": "^7.4.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.9.3",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"lefthook": "^1.8.4",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]"
}