-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1005 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
32
33
34
35
36
37
{
"name": "apprun-hn",
"version": "1.0.0",
"description": "Hacker News Reader made using AppRun",
"main": "index.js",
"scripts": {
"start": "run-p start:tsc start:server",
"build": "run-s build:*",
"start:tsc": "tsc -w",
"start:server": "esm-server --watch=dist",
"build_:css": "node-sass --output-style compressed styles.scss dist/styles.css",
"build:js": "webpack --mode production",
"build:workbox": "workbox generateSW"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yysun/apprun-hn.git"
},
"keywords": [
"apprun",
"examples"
],
"author": "Yiyi Sun <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yysun/apprun-hn/issues"
},
"homepage": "https://github.com/yysun/apprun-hn#readme",
"devDependencies": {
"apprun": "^2.26.3",
"esm-server": "^1.1.1",
"npm-run-all": "^4.1.5",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"workbox-cli": "^6.0.2"
}
}