-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.46 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
{
"name": "nodejs-app",
"version": "1.0.0-alpha.2",
"license": "Apache-2.0",
"scripts": {
"clear:client": "cd client && rimraf public && cd ..",
"clear:server": "cd server && rimraf public dist && cd ..",
"build:client": "cd client && npm run build && cd ..",
"build:client-prod": "cd client && npm run build:prod && cd ..",
"build:server": "cd server && npm run build && cd ..",
"start:server": "cd server && nodemon server.js",
"start:server-prod": "cd server && node server.js",
"copy:public": "copyfiles -u 1 client/public/* server/dist && rimraf client/public",
"start:dev": "npm run clear:client && npm run clear:server && npm run build:client && npm run build:server && npm run copy:public && npm run start:server",
"start:prod": "npm run clear:client && npm run clear:server && npm run build:client-prod && npm run build:server && npm run copy:public && npm run start:server-prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NirbyApp/mitosis-microservice-nodejs-angular.git"
},
"author": "Chabane REFES",
"bugs": {
"url": "https://github.com/NirbyApp/mitosis-microservice-nodejs-angular/issues"
},
"homepage": "https://github.com/NirbyApp/mitosis-microservice-nodejs-angular#readme",
"engines": {
"node": ">= 6.9.0",
"npm": ">= 3.0.0"
},
"private": false,
"dependencies": {
},
"devDependencies": {
"copy": "^0.3.0",
"copyfiles": "^1.2.0",
"rimraf": "^2.6.1"
}
}