-
Notifications
You must be signed in to change notification settings - Fork 292
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 950 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 950 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
27
28
29
{
"name": "wiki",
"version": "3.0.0",
"private": "true",
"dependencies": {
"@tailwindcss/cli": "^4.0.14",
"tailwindcss": "^4.0.14"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@playwright/test": "^1.49.0",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^22.0.0"
},
"scripts": {
"postinstall": "cd frontend && yarn install",
"dev": "cd frontend && yarn dev",
"build": "yarn tailwind:build && cd frontend && yarn build",
"tailwind:watch": "npx @tailwindcss/cli -i ./wiki/public/css/main.css -o ./wiki/public/css/tailwind.css --watch",
"tailwind:build": "npx @tailwindcss/cli -i ./wiki/public/css/main.css -o ./wiki/public/css/tailwind.css",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug"
},
"keywords": [],
"author": "",
"license": "ISC"
}