-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.46 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.46 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "site_name",
"version": "0.1.0",
"description": "site_name.gr",
"homepage": "https://github.com/polyptychon/site_name",
"bugs": "",
"main": "src/coffee/main.coffee",
"author": {
"name": "Polyptychon",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/polyptychon/site_name"
},
"browserify": {
"transform": [
"coffeeify",
"jadeify"
]
},
"license": "MIT",
"devDependencies": {
"browserify": "^13.0.0",
"camelcase": "4.0.0",
"coffee-script": "^1.10.0",
"coffeeify": "^2.0.1",
"del": "^2.2.0",
"dotenv": "^2.0.0",
"file-extension": "3.1.2",
"gh-pages": "^0.12.0",
"glob": "^4.5.3",
"gulp": "^3.9.1",
"gulp-autoprefixer": "0.0.7",
"gulp-buffer": "0.0.2",
"gulp-changed": "^1.3.0",
"gulp-concat": "^2.6.0",
"gulp-cssnano": "^2.1.1",
"gulp-duration": "0.0.0",
"gulp-fingerprint": "^0.3.2",
"gulp-flatten": "0.0.2",
"gulp-if": "^1.2.5",
"gulp-jade": "^0.5.0",
"gulp-livereload": "^2.1.1",
"gulp-plumber": "^0.6.6",
"gulp-rev": "^7.0.0",
"gulp-sass": "^2.2.0",
"gulp-size": "^1.3.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^0.3.2",
"gulp-util": "^3.0.7",
"gulp-webserver": "0.9.1",
"imageoptim-cli": "1.14.9",
"jade": "^1.11.0",
"jadeify": "^4.6.0",
"lodash": "^4.5.1",
"minifyify": "^7.3.1",
"plumber": "^0.4.8",
"run-sequence": "^0.3.7",
"slugify": "1.1.0",
"uglifyify": "^3.0.1",
"vinyl-paths": "^1.0.0",
"vinyl-source-stream": "^0.1.1",
"yargs": "^1.3.3"
},
"dependencies": {
"animationframe": "git://github.com/HarrisSidiropoulos/animationframe",
"bootstrap-sass": "^3.3.7",
"bootstrap-validator": "0.11.9",
"deep-equal": "1.0.1",
"form-serialize": "0.7.1",
"jquery": "^2.1.1",
"jquery-touch-events": "git+https://github.com/benmajor/jQuery-Touch-Events.git",
"jquery.browser": "^0.1.0",
"jquery.transit": "^0.9.12",
"lodash.throttle": "4.1.1",
"photoswipe": "4.1.1"
},
"scripts": {
"start": "./node_modules/.bin/gulp server",
"clean": "find ./ -name \".DS_Store\" -depth -exec rm {} \\;",
"optimize-images": "./node_modules/.bin/imageoptim -a -d _mockups",
"build": "NODE_ENV=production ./node_modules/.bin/gulp build && NODE_ENV=production ./node_modules/.bin/gulp jade",
"deploy": "npm run build && ./node_modules/.bin/gh-pages -d builds/production"
}
}