-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.03 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
{
"name": "devjobsph",
"version": "1.0.0",
"description": "",
"main": "./server/src/index.js",
"scripts": {
"start": "npm start --prefix server",
"build": "npm run build --prefix client",
"postinstall": "cd ./server && npm install && cd ../client && npm install ",
"scrape": "npm run scrape --prefix server",
"dev": "concurrently --kill-others \"npm run dev --prefix server\" \"npm run start --prefix client\"",
"lint": "concurrently \"npm run lint --prefix server\" \"npm run lint --prefix client\"",
"lint:fix": "concurrently \"npm run lint:fix --prefix server\" \"npm run lint:fix --prefix client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/bertdida/DevJobsPh.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bertdida/DevJobsPh/issues"
},
"homepage": "https://github.com/bertdida/DevJobsPh#readme",
"engines": {
"node": "12.x",
"npm": "6.x"
},
"dependencies": {
"concurrently": "^5.3.0"
}
}