-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 938 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 938 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
{
"name": "central",
"repository": {
"type": "git",
"url": "git+https://github.com/frappe/central.git"
},
"private": true,
"type": "module",
"scripts": {
"postinstall": "cd dashboard && yarn install",
"dev": "cd dashboard && yarn dev",
"watch": "yarn dev",
"build": "NODE_ENV=production yarn run build-dashboard && yarn run build-email-css",
"build-dashboard": "cd dashboard && yarn build",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:report": "playwright show-report",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"build-email-css": "tailwindcss -i scripts/email.css -o central/public/css/email.css -c scripts/email.config.js --minify"
},
"version": "0.1.0",
"devDependencies": {
"@playwright/test": "^1.61.0",
"tailwindcss": "^3.4.19"
}
}