This repository has been archived by the owner on Mar 12, 2024. It is now read-only.
forked from pwa-builder/PWABuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.72 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
78
79
80
{
"name": "pwabuilder",
"version": "0.0.1",
"description": "A starter kit for building PWAs!",
"main": "index.js",
"scripts": {
"preinstall": "node ../../scripts/setupDeps.js",
"dev": "vite --open",
"dev-task": "vite",
"start-for-tests": "npm run build && vite --port 3000",
"dev:deps": "concurrently \"node ../../scripts/watchDeps.js\" \"rollup --config rollup.config.dev.mjs --watch\" \"web-dev-server\"",
"build": "tsc && vite build",
"start": "npm run build && npx nodemon server.js",
"start-remote": "vite --host",
"postinstall": "npm run copy-sl-assets",
"copy-sl-assets": "mkdirp ./public/assets/sl-icons/assets/icons && ncp ./node_modules/@shoelace-style/shoelace/dist/assets/icons ./public/assets/sl-icons/assets/icons",
"test": "npx nyc@latest playwright test",
"coverage": "cd coverage/lcov-report && npx http-server -p 3001"
},
"author": "",
"license": "ISC",
"dependencies": {
"@pwabuilder/code-editor": "file:../../components/code-editor",
"@pwabuilder/manifest-editor": "file:../../components/manifest-editor",
"@pwabuilder/manifest-information": "file:../../libraries/manifest-information",
"@pwabuilder/manifest-validation": "file:../../libraries/manifest-validation",
"@pwabuilder/site-analytics": "file:../../libraries/site-analytics",
"@shoelace-style/shoelace": "^2.4.0",
"@vaadin/router": "^1.7.4",
"browser-fs-access": "^0.23.0",
"colorjs.io": "^0.4.0",
"cors": "^2.8.5",
"express": "^4.17.3",
"ionicons": "^6.0.3",
"lit": "^2.2.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@playwright/test": "^1.32.3",
"@types/chai": "^4.2.21",
"@types/lodash-es": "^4.17.4",
"@types/mocha": "^8.2.3",
"@types/node": "^18.7.6",
"@types/service_worker_api": "^0.0.9",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"@web/dev-server": "^0.1.17",
"chai": "^4.3.4",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"danger": "^11.2.3",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"lit-analyzer": "^1.2.1",
"mkdirp": "^1.0.4",
"msw": "^0.33.0",
"ncp": "^2.0.0",
"nyc": "^15.1.0",
"playwright": "^1.17.2",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^10.1.0",
"tslib": "^2.1.0",
"typescript": "^4.6.3",
"vite": "^2.9.0"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5",
"endOfLine": "crlf",
"bracketSpacing": true
}
}