-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.56 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.56 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
{
"name": "nest",
"version": "1.0.0",
"description": "a social app",
"scripts": {
"build:backend": "cd backend-nest && npm i && npm run build",
"build:shared": "cd shared && npm i && npm run build",
"tsc:shared": "cd shared && npx tsc",
"build:frontend": "cd frontend && npm i && npm run build",
"build:all": "npm i && npm-run-all --parallel build:shared build:backend build:frontend",
"build": "npm-run-all --parallel build:shared build:backend",
"vercel:build": "cd ./shared && npm install && npm run vercel:build && cd ../frontend && npm install && npm run vercel:build",
"start:backend": "cd backend && npm start",
"start:backend-nest": "cd backend-nest && npm run start:dev",
"backend-migration": "cd backend-nest && npm run migration:run",
"start:backend:js": "cd backend && npm run start:js",
"start:backend-dev": "cd backend && npm run start:dev",
"start:frontend": "cd frontend && npm start",
"start": "npm-run-all --parallel start:backend start:frontend",
"start:dev": "npm-run-all --parallel start:backend-nest start:frontend",
"start:js": "npm-run-all --parallel start:backend:js start:frontend",
"start:backend-prod": "cd backend-nest && npm run start:prod",
"lint": "prettier . --write",
"lint:check": "prettier . --check",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "islambardala",
"license": "ISC",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"eslint": "^9.39.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8"
}
}