forked from devfreebooks/devfreebooks.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1 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
{
"name": "devfreebooks",
"version": "2.0.0",
"description": "A collection of free books for developers",
"author": "Caio Ribeiro Pereira",
"license": "MIT",
"scripts": {
"clean": "node clean.js",
"start": "npm run clean && grunt prebuild:dev && harp server . --port 3000",
"build": "grunt prebuild:prod && harp compile . www && grunt build:prod && npm run clean",
"deploy": "npm run build && grunt deploy:prod && npm run clean"
},
"dependencies": {
"eslint": "3.9.1",
"eslint-config-airbnb-base": "10.0.1",
"eslint-plugin-import": "2.2.0",
"fs-extra": "1.0.0",
"grunt": "1.0.1",
"grunt-appcache": "0.2.0",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-compress": "1.3.0",
"grunt-contrib-imagemin": "1.0.1",
"grunt-env": "0.4.4",
"grunt-gh-pages": "2.0.0",
"grunt-newer": "1.2.0",
"grunt-shell": "2.1.0",
"grunt-sitemaps": "0.1.1",
"grunt-sw-precache": "1.0.3",
"harp": "0.21.0",
"moment": "2.15.2",
"rss": "1.2.1"
}
}