This repository was archived by the owner on Mar 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.34 KB
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
41
42
43
44
45
{
"name": "exam-wizard-backend",
"description": "GraphQL backend API for Exam Wizard",
"version": "1.0.0",
"private": true,
"keywords": [],
"author": "ATLAS2002 <siddharth211102@gmail.com> (https://github.com/ATLAS2002)",
"license": "MIT",
"packageManager": "pnpm@9.0.6",
"engines": {
"node": ">=18"
},
"workspaces": [
"packages/*",
"services/*",
"tools/*"
],
"scripts": {
"prod-env": "dotenv -e .env.prod.local -e .env.prod -e .env -e .env.local",
"dev-env": "dotenv -e .env.dev.local -e .env.dev -e .env.local -e .env",
"build": "pnpm prod-env -- turbo build",
"dev": "pnpm dev-env -- turbo dev",
"db:check": "turbo db:check",
"db:generate": "pnpm dev-env -- turbo db:generate",
"db:migrate": "pnpm dev-env -- turbo db:migrate",
"db:push": "pnpm dev-env -- turbo db:push",
"db:studio": "pnpm dev-env -- turbo db:studio",
"gql:generate": "turbo gql:generate",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@config/eslint": "workspace:*",
"@config/typescript": "workspace:*",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^1.13.3",
"eslint-plugin-turbo": "^1.13.3",
"prettier": "^3.2.5",
"turbo": "latest"
},
"dependencies": {
"dotenv-cli": "^7.4.1"
}
}