-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 852 Bytes
/
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
{
"name": "nest",
"version": "1.0.0",
"description": "a social app",
"scripts": {
"build:backend": "cd backend && npm i && npm run build",
"build:shared": "cd shared && npm i && npm run build",
"build:frontend": "cd frontend && npm i && npm run build",
"build": "npm i && npm-run-all --parallel build:shared build:backend build:frontend",
"start:backend": "cd backend && npm start",
"start:frontend": "cd frontend && npm start",
"start": "npm-run-all --parallel start:backend start:frontend",
"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",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8"
}
}