-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.1 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.1 KB
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
{
"name": "codedtag",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "npm-run-all --parallel nodemon:start react:start gulp:start",
"react:start": "npm --prefix ./client run dev-start",
"nodemon:start": "npm --prefix ./server run dev-start",
"gulp:start": "gulp watch",
"start:update": "npm-run-all --parallel server:update client:update front:update",
"server:update": "npm --prefix ./server run update",
"client:update": "npm --prefix ./client run update",
"front:update": "npm update",
"start:install": "npm-run-all --parallel server:install client:install front:install",
"server:install": "npm --prefix ./server run install",
"client:install": "npm --prefix ./client run install",
"front:install": "npm install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-sass": "^5.1.0",
"gulp-uglifycss": "^1.1.0",
"nodemailer": "^6.9.8",
"npm-run-all": "^4.1.5",
"sass": "^1.70.0"
}
}