forked from devfreebooks/devfreebooks.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 957 Bytes
/
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
{
"name": "devfreebooks",
"version": "3.0.0",
"description": "A collection of free books for devs",
"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": "5.12.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.15.0",
"fs-extra": "7.0.1",
"grunt": "1.0.3",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-compress": "1.4.3",
"grunt-contrib-imagemin": "3.1.0",
"grunt-env": "0.4.4",
"grunt-gh-pages": "3.1.0",
"grunt-newer": "1.3.0",
"grunt-shell": "3.0.1",
"grunt-sitemaps": "0.1.1",
"harp": "0.29.0",
"moment": "2.24.0",
"rss": "1.2.2"
}
}