-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
47 lines (47 loc) · 1.11 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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "learning-pwa",
"version": "0.1.0",
"description": "some samples and blogs about how to start with your first PWA",
"main": "app.js",
"scripts": {
"start": "node app.js",
"release": "standard-version",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alienzhou/learning-pwa.git"
},
"keywords": [
"PWA",
"koa",
"sample"
],
"author": "alienzhou",
"license": "ISC",
"bugs": {
"url": "https://github.com/alienzhou/learning-pwa/issues"
},
"homepage": "https://github.com/alienzhou/learning-pwa#readme",
"dependencies": {
"https-proxy-agent": "^2.2.1",
"koa": "^2.5.0",
"koa-body": "^2.5.0",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"nedb": "^1.8.0",
"request": "^2.85.0",
"web-push": "^3.3.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"husky": "^0.15.0-rc.13",
"standard-version": "^8.0.1"
}
}