-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.24 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "online_job_portal",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/api",
"packages/client"
],
"scripts": {
"clean": "rimraf ./dist && mkdir dist",
"buildServer": "yarn workspace api run build",
"buildServerWebpack": "webpack --progress --color",
"buildClient": "yarn workspace client run build && cp -a packages/client/build ./dist/public",
"build": "npm-run-all --parallel buildServer buildClient",
"rebuild": "npm-run-all --serial clean build",
"devServer": "yarn workspace api run dev",
"devClient": "yarn workspace client run start",
"dev": "npm-run-all --parallel devServer devClient",
"prestartServer": "yarn run buildServer",
"startServer": "node dist/bin/www",
"prestartPython": "./Local_API_v0_19_4/tomcat-esp-api-v03_94/bin/startup.sh",
"startPython": "python app/app.py",
"poststartPython": "./Local_API_v0_19_4/tomcat-esp-api-v03_94/bin/shutdown.sh"
},
"repository": "git@github.com:Suven-p/online_job_portal.git",
"author": "Suven-p <pandeysuven@gmail.com>",
"license": "MIT",
"dependencies": {
"rimraf": "^3.0.2"
},
"devDependencies": {
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5"
},
"packageManager": "yarn@3.2.0"
}