-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 872 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 872 Bytes
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": "geekpress",
"version": "1.0.0",
"repository": {},
"license": "MIT",
"description": "Minimalistic Elixir Blog Engine",
"private": true,
"scripts": {
"link-blog": "ln -fs $BLOG_PATH/config ./ && ln -fs $BLOG_PATH/images ./priv/static/",
"build-dev": "gulp",
"dev": "npm run build-dev && npm run link-blog && mix phoenix.server",
"build-production": "gulp build-production --production"
},
"devDependencies": {
"chalk": "^1.0.0",
"del": "^2.1.0",
"gulp": "^3.8.11",
"gulp-clean-css": "^2.0.10",
"gulp-concat": "~2.6.0",
"gulp-replace": "~0.5.3",
"gulp-sass": "~2.3.1",
"gulp-size": "~2.1.0",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "~1.5.1",
"vinyl-paths": "^2.1.0"
},
"dependencies": {
"bootstrap-sass": "^3.3.5",
"font-awesome": "^4.4.0",
"jquery": "^2.2.4"
}
}