-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 851 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 851 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
{
"name": "microdocs-styles",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"build:test": "npm run build && node playwright/build-test-template.js",
"test": "npm run build:test && playwright test --config=playwright/playwright.config.js",
"test:ui": "npm run build:test && playwright test --config=playwright/playwright.config.js --ui",
"test:headed": "npm run build:test && playwright test --config=playwright/playwright.config.js --headed"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@tailwindcss/cli": "^4.0.0",
"@tailwindcss/typography": "^0.5.0",
"@tailwindcss/vite": "^4.1.17",
"playwright": "^1.56.1",
"tailwindcss": "^4.0.0",
"terser": "^5.44.1",
"vite": "^7.2.4",
"vite-plugin-singlefile": "^2.3.0"
}
}