-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 1.04 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
{
"name": "compost-hn",
"version": "1.0.1",
"description": "A HackerNews PWA built using Compost",
"main": "index.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build:dev": "rollup -c rollup.config.dev.js && workbox copyLibraries public/libs",
"build:prod": "rollup -c && workbox copyLibraries build/public/libs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lamplightdev/compost-hn.git"
},
"author": "Chris Haynes",
"license": "MIT",
"bugs": {
"url": "https://github.com/lamplightdev/compost-hn/issues"
},
"homepage": "https://github.com/lamplightdev/compost-hn#readme",
"dependencies": {
"@lamplightdev/compost": "^1.1.7",
"@webcomponents/webcomponentsjs": "^1.1.0"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"fs-extra": "^5.0.0",
"rollup": "^0.55.5",
"rollup-plugin-uglify": "^3.0.0",
"workbox-cli": "^3.0.0-beta.0"
}
}