-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.41 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
{
"name": "dae",
"dependencies": {
"dotenv-cli": "latest",
"turbo": "1.10.12"
},
"devDependencies": {
"husky": "~8.0.3",
"lint-staged": "~13.2.2",
"rome": "~12.1.3",
"syncpack": "~11.2.1"
},
"engines": {
"node": ">=18.x",
"pnpm": ">=7.x"
},
"packageManager": "[email protected]",
"private": true,
"scripts": {
"build": "dotenv -- turbo run build",
"build-config": "dotenv -- turbo run build --filter={./config/*}",
"build-packages": "dotenv -- turbo run build --filter={./packages/*}...",
"check": "dotenv -- turbo run check",
"clean": "turbo run clean && rm -rf node_modules",
"db:format": "dotenv -- turbo run db:format",
"db:migrate:deploy": "dotenv -- turbo run db:migrate:deploy",
"db:migrate:dev": "dotenv -- turbo run db:migrate:dev",
"db:migrate:reset": "dotenv -- turbo run db:migrate:reset",
"db:push": "dotenv -- turbo run db:push",
"db:studio": "dotenv -- turbo run db:studio",
"deploy": "dotenv -- turbo run deploy",
"dev": "dotenv -- turbo run dev --no-cache --parallel --continue",
"format": "rome format .",
"format:fix": "rome format . --write",
"lint": "rome check .",
"lint:fix": "rome check . --apply",
"prepare": "husky install",
"start": "dotenv -- turbo run start"
}
}