-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.6 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.6 KB
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
{
"name": "cookcli",
"version": "1.0.0",
"description": "CookCLI web interface",
"scripts": {
"build-css": "tailwindcss -i ./static/css/input.css -o ./static/css/output.css --minify",
"watch-css": "tailwindcss -i ./static/css/input.css -o ./static/css/output.css --watch",
"build-js": "esbuild static/js/src/editor.js --bundle --outfile=static/js/editor.bundle.js --format=iife --minify",
"watch-js": "esbuild static/js/src/editor.js --bundle --outfile=static/js/editor.bundle.js --format=iife --watch",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:headed": "playwright test --headed",
"test:chrome": "playwright test --project=chromium",
"test:firefox": "playwright test --project=firefox",
"test:webkit": "playwright test --project=webkit",
"test:mobile": "playwright test --project=\"Mobile Chrome\" --project=\"Mobile Safari\"",
"test:report": "playwright show-report",
"test:codegen": "playwright codegen http://localhost:9080"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@codemirror/commands": "^6.10.1",
"@codemirror/language": "^6.12.1",
"@codemirror/lint": "^6.9.2",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.11",
"@playwright/test": "^1.55.0",
"esbuild": "^0.27.2",
"playwright": "^1.55.0",
"tailwindcss": "^3.4.0"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.0"
},
"overrides": {
"picomatch": ">=2.3.2",
"minimatch": ">=9.0.7",
"yaml": ">=2.8.3"
}
}