-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 801 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 801 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
{
"name": "turborepo-basic-shared",
"version": "0.0.1",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "dotenv -- turbo run build",
"start": "dotenv -- turbo run start",
"dev": "dotenv -- turbo run dev",
"docs": "dotenv -- turbo run docs:dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"database": "docker compose up -d",
"database:export": "./packages/dev-scripts/db-export.sh",
"database:import": "./packages/dev-scripts/db-import.sh"
},
"devDependencies": {
"prettier": "^3.0.0",
"turbo": "1.10.4",
"dotenv-cli": "7.3.0",
"prattle-deployment": "*"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "npm@18.17.0"
}