-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) Β· 864 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) Β· 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "notes",
"author": {
"name": "Pritam Debnath",
"email": "debnathpritam0802@gmail.com",
"url": "https://github.com/PriDebnath/portfolio-v2"
},
"private": true,
"scripts": {
"corepack:enable": "corepack enable",
"install:packages": "pnpm install",
"install:packages:lockfile": "pnpm install --frozen-lockfile",
"build:frontend": "pnpm --filter frontend build",
"dev:frontend": "pnpm --filter frontend dev",
"d:f": "pnpm --filter frontend dev",
"dev:backend": "cd backend && bun dev",
"dev:backend-express": "cd backend-express && npm run dev",
"d:b": "cd backend-express && npm run dev",
"clean:softer": "pnpm cache delete",
"clean:soft": "rm -rf frontend/node_modules backend/node_modules",
"clean:delete": "rmdir /s /q node_modules && del pnpm-lock.yaml && pnpm store prune"
}
}