-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 949 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 949 Bytes
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
{
"name": "pccampapp",
"version": "3.0.18",
"description": "Config-driven Progressive Web App for BarCamps and Unconferences",
"type": "module",
"scripts": {
"build": "node build-cache-busting.cjs",
"postinstall:playwright": "npx playwright install",
"test": "playwright test",
"test:prod": "BASE_URL=http://localhost:5174 playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"test:translations": "playwright test tests/translations.spec.js",
"test:pwa": "playwright test tests/pwa.spec.js",
"test:ui-tests": "playwright test tests/ui.spec.js",
"test:report": "playwright show-report"
},
"keywords": [
"pwa",
"barcamp",
"unconference",
"event",
"offline-first"
],
"author": "Proud Commerce GmbH",
"license": "MIT",
"dependencies": {
"sharp": "^0.33.5"
},
"devDependencies": {
"@playwright/test": "^1.40.0"
}
}