-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.51 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
{
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite",
"prepare": "husky",
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:ui": "playwright test --ui",
"test:e2e": "./scripts/run-e2e-tests.sh",
"test:e2e:headed": "./scripts/run-e2e-tests.sh --headed",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
"lint:fix": "eslint . --ext .js,.ts,.jsx,.tsx --fix",
"format": "prettier --write .",
"type-check": "tsc --noEmit",
"test:all": "npm run lint && npm run type-check && npm run test"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"alpinejs": "^3.4.2",
"autoprefixer": "^10.4.2",
"axios": "^1.11.0",
"concurrently": "^9.0.1",
"eslint": "^9.34.0",
"husky": "^9.1.7",
"laravel-vite-plugin": "^2.0.0",
"lint-staged": "^16.1.6",
"postcss": "^8.4.31",
"prettier": "^3.6.2",
"tailwindcss": "^3.1.0",
"typescript": "^5.9.2",
"vite": "^7.0.4"
},
"dependencies": {
"@tinymce/tinymce-vue": "^6.3.0",
"htmx.org": "^2.0.7",
"tinymce": "^8.0.2"
}
}