-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.54 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
{
"name": "interview-undo",
"version": "1.0.0",
"private": true,
"description": "A LeetCode-style interview preparation platform with sandboxed code execution",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "dotenv -e .env -- turbo run test",
"test:e2e": "dotenv -e .env -- turbo run test:e2e",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo run clean",
"db:migrate": "npm run migrate:dev --workspace=apps/backend-api",
"db:seed": "npm run seed --workspace=apps/backend-api",
"db:seed:arrays": "npm run db:seed:arrays --workspace=apps/backend-api",
"db:seed:other-js": "npm run db:seed:other-js --workspace=apps/backend-api",
"db:studio": "npm run studio --workspace=apps/backend-api",
"prepare": "node -e \"try { require('child_process').execSync('husky', { stdio: 'inherit' }) } catch (e) {}\"",
"postinstall": "prisma generate --schema=apps/backend-api/src/infrastructure/database/prisma/schema.prisma"
},
"devDependencies": {
"dotenv-cli": "^11.0.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.5.0",
"turbo": "^2.5.0",
"typescript": "^5.8.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,md,css,scss}": "prettier --write"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "npm@10.9.2"
}