-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 792 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 792 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
{
"name": "plug",
"version": "0.0.1",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "dotenv -e .env.development turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"db:push": "dotenv -e .env.development turbo run db:push",
"gateway:dev": "dotenv -e .env.development turbo run gateway:dev",
"proto:types" : "turbo run proto:types",
"proto:build" : "turbo run proto:build"
},
"devDependencies": {
"prettier": "latest",
"turbo": "^1.7.4"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"dotenv-cli": "^7.0.0"
},
"globalDependencies": [
".env.development"
],
"packageManager": "yarn@1.22.19"
}