forked from pwa-builder/pwa-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.93 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
{
"name": "pwa-starter",
"version": "0.0.1",
"description": "A starter kit for building PWAs!",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist/ && rollup --config rollup.config.js && node workbox.mjs",
"start": "concurrently \"rollup --config rollup.config.dev.js --watch\" \"web-dev-server --app-index build/index.html --root-dir build/ --compatibility none --node-resolve --watch --open /\"",
"dev": "concurrently \"rollup --config rollup.config.dev.js --watch\" \"web-dev-server --app-index build/index.html --root-dir build/ --compatibility none --node-resolve --watch --open /\"",
"dev-task": "concurrently \"rollup --config rollup.config.dev.js --watch\" \"web-dev-server --app-index build/index.html --root-dir build/ --compatibility none --node-resolve --watch /\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@pwabuilder/pwainstall": "^1.6.7",
"@vaadin/router": "^1.7.4",
"lit": "^2.0.2",
"workbox-build": "^6.4.2",
"workbox-core": "^6.4.2",
"workbox-precaching": "^6.4.2"
},
"devDependencies": {
"@open-wc/rollup-plugin-html": "^1.2.5",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-strip": "^2.1.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/service_worker_api": "^0.0.9",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@web/dev-server": "^0.1.28",
"concurrently": "^6.4.0",
"danger": "^10.7.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.1",
"eslint-plugin-node": "^11.1.0",
"lit-analyzer": "^1.2.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.60.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-workbox": "^6.2.0",
"typescript": "^4.5.2"
}
}