-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
31 lines (31 loc) · 1003 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": "netlibox",
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {
"get-posts": "node ./scripts/get-posts-from-dropbox.js",
"start": "npm run get-posts && cd ./src && bundle exec jekyll serve",
"start-netlify-functions": "netlify-lambda serve ./src/_netlify-functions",
"build": "npm run get-posts && npm run build-netlify-functions && cd ./src && bundle exec jekyll build",
"build-netlify-functions": "netlify-lambda build ./src/_netlify-functions",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jimniels/netlibox.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jimniels/netlibox/issues"
},
"homepage": "https://github.com/jimniels/netlibox#readme",
"devDependencies": {
"dotenv": "^6.0.0",
"dropbox": "^4.0.5",
"fs-extra": "^6.0.1",
"isomorphic-fetch": "^2.2.1",
"netlify-lambda": "^0.4.0"
}
}