-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.42 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "mitto-web",
"version": "1.0.0",
"description": "JavaScript tests for Mitto web interface",
"private": true,
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:ui": "npx playwright test --config=tests/ui/playwright.config.ts",
"test:ui:headed": "npx playwright test --config=tests/ui/playwright.config.ts --headed",
"test:ui:debug": "npx playwright test --config=tests/ui/playwright.config.ts --debug",
"test:ui:report": "npx playwright show-report tests/ui/playwright-report",
"test:ui:legacy": "npx playwright test --config=tests/ui/playwright.config.js",
"tailwind": "npx @tailwindcss/cli -i web/static/tailwind.src.css -o web/static/tailwind.css --minify",
"vendor:codemirror": "esbuild scripts/codemirror/entry.js --bundle --format=esm --minify --legal-comments=none --outfile=web/static/vendor/codemirror/codemirror.js",
"tailwind:watch": "npx @tailwindcss/cli -i web/static/tailwind.src.css -o web/static/tailwind.css --watch",
"lint:html": "bash scripts/lint-html.sh",
"lint:css": "stylelint 'web/static/**/*.css' --ignore-path .gitignore",
"lint:js": "eslint",
"lint:frontend": "npm run lint:html && npm run lint:css && npm run lint:js"
},
"devDependencies": {
"@codemirror/commands": "6.10.3",
"@codemirror/lang-markdown": "6.5.0",
"@codemirror/language": "6.12.3",
"@codemirror/lint": "6.9.7",
"@codemirror/search": "6.7.1",
"@codemirror/state": "6.6.0",
"@codemirror/theme-one-dark": "6.1.3",
"@codemirror/view": "6.43.1",
"@playwright/test": "^1.50.1",
"@tailwindcss/cli": "^4.3.0",
"@types/node": "^20.11.0",
"daisyui": "^5.5.23",
"esbuild": "0.28.1",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"htmlhint": "^1.9.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.8.1",
"stylelint": "^17.9.1",
"stylelint-config-standard": "^40.0.0",
"tailwindcss": "^4.3.0",
"typescript": "^5.4.0"
},
"jest": {
"testEnvironment": "jsdom",
"roots": [
"<rootDir>/web/static"
],
"testMatch": [
"**/*.test.js"
],
"moduleFileExtensions": [
"js"
],
"transform": {},
"verbose": true
}
}