-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
{
"name": "hacksilesia",
"version": "2.0.0",
"description": "Hacksilesia homepage",
"main": "index.js",
"scripts": {
"start": "gulp",
"dev": "NODE_ENV='dev' gulp dev",
"docker-build": "docker build . --tag hssilesia/hacksilesia",
"docker-push": "docker push hssilesia/hacksilesia",
"docker-start": "gulp && cp docker-robots.txt deploy/robots.txt",
"docker-full": "npm run docker-start && npm run docker-build && npm run docker-push"
},
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/hackerspace-silesia/HackSilesia.git"
},
"author": "Dariusz 'Palid' Niemczyk",
"license": "ISC",
"bugs": {
"url": "https://github.com/hackerspace-silesia/HackSilesia/issues"
},
"homepage": "https://github.com/hackerspace-silesia/HackSilesia",
"devDependencies": {
"browser-sync": "^2.18.13",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-cssnano": "^2.0.0",
"gulp-html-replace": "^1.5.5",
"gulp-htmlmin": "^1.3.0",
"gulp-imagemin": "^2.4.0",
"gulp-nunjucks": "^3.0.0",
"gulp-postcss": "^7.0.0",
"gulp-uglify": "^1.5.1",
"gulp-uncss": "^1.0.4",
"imagemin-pngquant": "^4.2.0",
"postcss-cssnext": "^2.10.0",
"postcss-nested": "^1.0.1"
},
"dependencies": {
}
}