-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.33 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "is-pwa-ready",
"version": "0.1.0",
"description": "Tracking the status of PWA in Chinese browser",
"main": "server/index.js",
"scripts": {
"start": "webpack -w & nodemon --watch server --watch views -e js,html,json",
"node-debug": "webpack -w & nodemon --inspect --watch server --watch views -e js,html,json",
"build": "rm -f ./static/css/*-*.css && rm -f ./static/js/*-*.js && rm -f ./static/js/auto/*-*-*.js && webpack --env.mode='production'",
"mos": "git pull origin master && pm2 restart pm2.json",
"lint": "eslint . --fix",
"test": "webpack && node jsonlint.js",
"precommit": "npm run lint && node jsonlint.js",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toxic-johann/is-pwa-ready.git"
},
"keywords": [
"PWA",
"serviceworker",
"browser",
"Chinese"
],
"author": "toxic-johann",
"license": "MIT",
"bugs": {
"url": "https://github.com/toxic-johann/is-pwa-ready/issues"
},
"homepage": "https://github.com/toxic-johann/is-pwa-ready#readme",
"dependencies": {
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.0",
"koa-send": "^4.0.0",
"koa-view": "^2.0.0",
"pm2": "^2.4.5",
"route-recognizer": "^0.3.3",
"web-push": "^3.2.2"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.0.0",
"babel-plugin-async-to-promises": "^1.0.5",
"babel-preset-es2015": "^6.24.1",
"clipboard": "^1.7.1",
"core-js": "^2.4.1",
"css-loader": "^0.28.4",
"eslint": "^4.14.0",
"eslint-config-egg": "^6.0.0",
"eslint-plugin-html": "^4.0.1",
"extract-loader": "^1.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"flow-bin": "^0.62.0",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.14.3",
"jsonlint": "^1.6.2",
"nodemon": "^1.11.0",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.9",
"precss": "^2.0.0",
"qiniu-webpack-plugin": "^0.4.2",
"raven-js": "^3.15.0",
"style-loader": "^0.19.1",
"sweetalert": "^2.1.0",
"ua-parser-js": "^0.7.12",
"url-loader": "^0.6.2",
"vconsole": "^3.1.0",
"webpack": "^3.10.0",
"webpack-md5-hash": "0.0.6",
"webpack-visualizer-plugin": "^0.1.11",
"whatwg-fetch": "^2.0.3"
}
}