forked from envless/envless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.18 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
{
"name": "envless",
"version": "0.1.2",
"private": true,
"license": "AGPL-3.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"envless": "yarn --cwd ./apps/cli/ run cli",
"dev": "dotenv -- turbo run dev",
"build": "dotenv -- turbo run build",
"lint": "dotenv -- turbo run lint",
"format": "prettier --write \"**/*.{css,js,jsx,mjs,ts,tsx,md,mdx,json,yml}\"",
"build:ui": "dotenv -- turbo run build:ui",
"test": "dotenv -- turbo run test",
"test:e2e": "dotenv -- turbo run test:e2e",
"db:generate": "dotenv -- turbo run db:generate",
"db:migrate": "dotenv -- yarn --cwd ./apps/platform/ prisma migrate dev",
"docker:db:migrate": "dotenv -- yarn --cwd /platform/ prisma migrate dev",
"db:seed": "dotenv -- turbo run db:seed",
"db:reset": "dotenv -- turbo run db:reset",
"db:studio": "dotenv -- turbo run db:studio"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"eslint-config-prettier": "^8.7.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"turbo": "^1.9.3"
},
"engines": {
"node": "18.x"
},
"dependencies": {
"dotenv-cli": "^7.2.1"
}
}