forked from koolkishan/nextjs-airbnb-clone-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 880 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
25
26
27
28
29
30
{
"name": "airbnb-clone",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm-run-all -p start:frontend start:backend",
"start:frontend": "cross-env PORT=5000 npm --prefix public run dev",
"start:admin": "npm --prefix admin-ui start",
"start:backend": "npm --prefix server start",
"postinstall": "npm i --prefix public && npm i --prefix admin-ui && npm i --prefix server"
},
"devDependencies": {
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koolkishan/nextjs-airbnb-clone.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/koolkishan/nextjs-airbnb-clone/issues"
},
"homepage": "https://github.com/koolkishan/nextjs-airbnb-clone#readme",
"dependencies": {
"qs": "^6.11.2"
}
}