-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.89 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
47
{
"name": "cv-lo",
"version": "1.0.0",
"description": "A simple service that creates resumes from Trello.",
"main": "index.js",
"scripts": {
"css:build": "scss-cli --output-style compressed src-sass/main.scss -o dist/",
"css:watch": "onchange 'src-sass/' -- npm run css:build",
"js:build": "browserify -t reactify src-js/index.js -d -p [minifyify --map bundle.map.json --output dist/bundle.map.json] > dist/bundle.js",
"js:watch": "watchify -t reactify src-js/index.js -o dist/bundle.js",
"html:build": "html-minifier --collapse-whitespace --keep-closing-slash --remove-comments index.html -o dist/index.html",
"html:watch": "onchange '!dist/**/*' '*.html' -- npm run html:build",
"browserSync": "browser-sync start --server 'dist' --files 'dist/*' --exclude 'dist/.bundle.js' --logLevel 'info' --no-open --no-notify",
"build": "npm run css:build && npm run js:build && npm run html:build",
"prewatch": "npm run build",
"watch": "parallelshell 'npm run css:watch' 'npm run js:watch' 'npm run html:watch' 'npm run browserSync'",
"start": "npm run watch",
"deploy": "rsync --delete -r dist/ [email protected]:/var/www/cv-lo/cv-lo.com/",
"predeploy": "npm run build",
"postdeploy": "echo '[GOOD-NEWS] cv-Lo shipped!'"
},
"author": "Isaac Gregson",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^5.1.0",
"brfs": "^1.0.2",
"browser-sync": "^2.2.4",
"browserify": "^9.0.3",
"browserify-shim": "^3.8.3",
"html-minifier": "^0.7.0",
"immutable": "^3.6.4",
"jquery": "^2.1.3",
"lodash": "^3.5.0",
"minifyify": "^6.3.2",
"morearty": "^0.7.11",
"onchange": "^1.0.0",
"parallelshell": "^1.1.1",
"pdfmake": "^0.1.17",
"react": "^0.13.1",
"reactify": "^1.1.0",
"reflux": "^0.2.7",
"scss-cli": "0.0.5",
"superagent": "^1.1.0",
"watch": "^0.14.0",
"watchify": "^2.4.0"
}
}