forked from alkuhlani/press
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.04 KB
/
package.json
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": "press",
"private": true,
"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",
"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",
"postinstall": "cd dashboard && yarn install"
},
"devDependencies": {
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/postcss7-compat": "^2.0.2",
"@tailwindcss/typography": "^0.5.1",
"autoprefixer": "^10.4.2",
"postcss": "^8.4.6",
"tailwindcss": "^3.0.18"
},
"dependencies": {
"fuse.js": "^6.6.2",
"libarchive.js": "^1.3.0",
"markdown-it": "^12.3.2"
}
}