forked from spacewindow/robt2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·42 lines (42 loc) · 1.32 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
{
"name": "robt",
"description": "Rob Thwaites Portfolio",
"main": "server.js",
"engines": {
"node": "12.14.0"
},
"scripts": {
"dev": "npm-run-all -p start watch:less watch:sync",
"start": "node server.js",
"deploy": "gcloud app deploy",
"watch:less": "onchange \"less/**/*.less\" -- npm run less",
"less": "lessc less/_main.less css/main.css --source-map=source.map --source-map-rootpath=css/",
"uglify": "uglifyjs js/app.js --compress --mangle -o ./js/app.min.js",
"watch:css": "onchange \"scss/*.scss\" -- npm run css",
"css": "node bin/scss.js",
"watch:sync": "browser-sync start --port \"4000\" --ui-port \"4001\" --proxy \"127.0.0.1:8080\" --files \"css/*.css, views/**/*.html.ejs, js/*.js, images/**/*.jpg\" --startPath \"/campaign-analytics\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/"
},
"author": "Rob T",
"license": "ISC",
"bugs": {
"url": "https://github.com/"
},
"homepage": "https://github.com/#readme",
"dependencies": {
"cors": "^2.8.5",
"ejs": "^2.5.7",
"express": "^4.16.0",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"glob": "^7.1.0",
"browser-sync": "^2.14.0",
"jquery": "^3.0.0",
"nodemon": "^1.8.1",
"npm-run-all": "^2.1.1"
}
}