-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.17 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
{
"name": "medistore",
"version": "0.1.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"install:landing": "npm install --prefix landing",
"install:client": "npm install --prefix client",
"install:server": "npm install --prefix server",
"install": "npm run install:landing && npm run install:client && npm run install:server",
"build:landing": "npm run build --prefix landing",
"build:client": "npm run build --prefix client",
"build:server": "npm run build --prefix server",
"build": "npm run build:landing && npm run build:client && npm run build:server",
"dev:client": "npm run dev --prefix client",
"dev:server": "npm run dev --prefix server",
"dev": "concurrently 'npm:dev:client' 'npm:dev:server'",
"start": "npm run start --prefix server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhasuraj01/medistore.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jhasuraj01/medistore/issues"
},
"homepage": "https://github.com/jhasuraj01/medistore#readme",
"dependencies": {},
"devDependencies": {
"concurrently": "^7.4.0"
}
}