-
Notifications
You must be signed in to change notification settings - Fork 353
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.86 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.86 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
{
"name": "press",
"private": true,
"type": "module",
"scripts": {
"dev": "cd dashboard && yarn dev",
"test": "cd dashboard && yarn test",
"watch": "yarn dev",
"build": "NODE_ENV=production yarn run build-all",
"build-all": "yarn run build-app && yarn run build-email-css && yarn run build-marketplace-css && yarn run build-saas-css",
"build-app": "cd dashboard && yarn build",
"build-email-css": "npx tailwindcss -i ./press/public/email/style.css -o ./press/public/css/email.css --config ./press/public/email/tailwind.config.js",
"build-marketplace-css": "npx tailwindcss -i ./press/public/marketplace/style.css -o ./press/public/css/marketplace-next.css --config ./press/public/marketplace/tailwind.config.js",
"build-saas-css": "npx tailwindcss -i ./press/public/marketplace/style.css -o ./press/public/css/saas-next.css --config ./press/templates/saas/tailwind.config.js",
"postinstall": "cd dashboard && yarn install",
"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"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@playwright/test": "^1.56.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/postcss7-compat": "^2.0.2",
"@tailwindcss/typography": "^0.5.1",
"autoprefixer": "^10.4.2",
"commitlint": "^19.6.1",
"cspell": "^8.17.1",
"postcss": "^8.4.6",
"tailwindcss": "^3.2",
"vitepress": "^2.0.0-alpha.16",
"vitepress-sidebar": "^1.33.1",
"vue": "^3.5.28"
},
"dependencies": {
"dayjs": "^1.11.10",
"frappe-ui": "0.1.168",
"fuse.js": "^6.6.2",
"libarchive.js": "^1.3.0"
},
"version": "0.0.0"
}