-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
64 lines (64 loc) · 2.2 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
{
"name": "so-pwa",
"version": "1.0.0",
"description": "A PWA for Stack Overflow content.",
"scripts": {
"build": "run-s clean static css inline rollup workbox",
"clean": "shx rm -rf build",
"css": "postcss --output /tmp/styles.css src/styles.css",
"deploy": "run-s build firebase-deploy",
"firebase-deploy": "firebase deploy --only hosting,functions",
"firebase-serve": "firebase serve --only hosting,functions",
"inline": "regex-replace '\\/\\*styles\\*\\/' \"$(cat /tmp/styles.css)\" build/partials/",
"lint": "eslint --ext='.js,.mjs' .",
"rollup": "rollup --config rollup.config.js",
"serve": "run-s build firebase-serve",
"static": "shx cp -r 'src/static' build",
"workbox": "workbox injectManifest"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChromeLabs/so-pwa.git"
},
"author": "Jeff Posnick",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GoogleChromeLabs/so-pwa/issues"
},
"homepage": "https://github.com/GoogleChromeLabs/so-pwa#readme",
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.26.0",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@popeindustries/lit-html-server": "^3.1.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@surma/rollup-plugin-off-main-thread": "^2.2.2",
"cssnano": "^5.0.6",
"eslint": "^7.29.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-header": "^3.1.1",
"firebase-tools": "^9.14.0",
"html-escaper": "^3.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1",
"postcss-css-variables": "^0.18.0",
"regex-replace": "^2.3.1",
"regexparam": "^2.0.0",
"rollup": "^2.52.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-string": "^3.0.0",
"shx": "^0.3.3",
"workbox-cacheable-response": "^6.1.5",
"workbox-cli": "^6.1.5",
"workbox-core": "^6.1.5",
"workbox-expiration": "^6.1.5",
"workbox-precaching": "^6.1.5",
"workbox-routing": "^6.1.5",
"workbox-strategies": "^6.1.5",
"workbox-streams": "^6.1.5"
}
}