-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 866 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
31
32
{
"name": "karam-portfolio",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:nodemon": "nodemon -w ./src -w index.js -e \"*\"",
"dev:watch": "concurrently -n W,N \"gulp watch\" \"npm run dev:nodemon\"",
"dev": "gulp build && npm run dev:watch",
"build": "npm install --only=dev && npx gulp buildForProduction",
"start": "node index.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"express-handlebars": "^5.3.3",
"gulp": "^4.0.2",
"gulp-htmlmin": "^5.0.1",
"gulp-imagemin": "^8.0.0",
"gulp-sass": "^5.0.0",
"gulp-uglify": "^3.0.2",
"sass": "^1.37.5"
},
"devDependencies": {
"concurrently": "^6.2.1",
"gulp-compile-handlebars": "^0.6.1",
"gulp-rename": "^2.0.0",
"live-server": "^1.2.1",
"nodemon": "^2.0.12"
}
}