-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.91 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
37
38
39
40
41
42
43
44
45
46
{
"name": "e-commerce",
"version": "1.0.0",
"description": "An E-commerce MERN stack application",
"main": "index.js",
"scripts": {
"server:dev": "cd backend && npm run server:dev",
"server:prod": "cd backend && npm run server:prod",
"server-install": "cd backend && npm install",
"server-build": "cd backend && npm run build",
"start": "cd frontend && npm run start",
"client": "cd frontend && npm start",
"client-install": "cd frontend && npm install",
"client-build": "cd frontend && npm run build",
"upgrade": "npm run server-install && npm run client-install",
"dev": "concurrently \"npm run server:dev\" \"npm run start\"",
"build": "npm run server-build && npm run client-build",
"prod": "concurrently \"npm run server:prod\" \"npm run start\"",
"setup": "npm install && npm run server-install && npm run migration:run && npm run dev",
"deploy": "npm install && npm run client-install && npm run server-install && npm run build && npm run migration:run && npm run prod",
"migration:run": "cd backend && npm run migration:run",
"migration:revert": "cd backend && npm run migration:revert",
"schema:sync": "cd backend && npm run schema:sync",
"migration:show": "cd backend && npm run migration:show",
"migration:generate": "cd backend && npm run migration:generate",
"migration:create": "cd backend && npm run migration:create",
"entity:create": "cd backend && npm run entity:create",
"subscriber:create": "cd backend && npm run subscriber:create"
},
"repository": {
"type": "git",
"url": "git+https://github.com/realkamran/e-commerce.git"
},
"author": "Teamo",
"license": "ISC",
"bugs": {
"url": "https://github.com/realkamran/e-commerce/issues"
},
"homepage": "https://github.com/realkamran/e-commerce#readme",
"dependencies": {
"concurrently": "^8.2.1"
},
"devDependencies": {
"ts-node": "^10.9.1"
}
}