forked from ivan-grebe/movieseatfinder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 696 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "movieseatfinder-frontend-tests",
"private": true,
"type": "module",
"scripts": {
"build:frontend": "esbuild frontend/app.js --bundle --format=esm --minify --legal-comments=none --outfile=frontend/app.bundle.js",
"check:frontend-bundle": "npm run build:frontend && git diff --exit-code -- frontend/app.bundle.js",
"lint:frontend": "knip --no-config-hints",
"test:frontend": "node --test tests/frontend-utils.test.mjs",
"pretest:mobile": "npm run build:frontend",
"test:mobile": "playwright test --config=tests/playwright.mobile.config.mjs"
},
"devDependencies": {
"@playwright/test": "1.61.1",
"esbuild": "0.28.1",
"knip": "6.31.0"
}
}