-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 854 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 854 Bytes
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
{
"name": "balatinac-dev-repo",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "dotenv -- turbo run build",
"start": "dotenv -- turbo run start",
"dev": "dotenv -- turbo run dev",
"lint": "turbo run lint",
"format": "turbo run format",
"database": "docker compose up -d",
"database:export": "./packages/dev-scripts/db-export.sh",
"database:import": "./packages/dev-scripts/db-import.sh"
},
"devDependencies": {
"@biomejs/biome": "1.4.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "7.3.0",
"turbo": "^1.10.16"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "npm@18.18.2",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}