-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 1.01 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
{
"name": "xen",
"version": "0.1.0",
"description": "Extension To My Introductory Website.",
"main": "index.js",
"repository": "https://github.com/visheshc14/Xen",
"author": "Vishesh Choudhary <[email protected]>",
"license": "MIT",
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.0.3",
"autoprefixer": "^10.3.4",
"cssnano": "^5.0.2",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1",
"rimraf": "^3.0.2",
"tailwindcss": "^2.2.15"
},
"scripts": {
"clean": "rimraf public/tailwind.generated.css",
"build:tailwind": "postcss public/tailwind.css -o public/tailwind.generated.css",
"build:custom": "postcss public/main.css -o public/main.generated.css && postcss public/highlight.css -o public/highlight.generated.css",
"build": "NODE_ENV=production yarn build:tailwind && yarn build:custom",
"release": "NODE_ENV=production yarn build && cargo build --release",
"dev": "yarn build && cargo run",
"start": "yarn release && cargo run --release"
}
}