-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 973 Bytes
/
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
{
"private": true,
"name": "rick",
"version": "1.0.0",
"description": "Your personalized search engine",
"main": "index.js",
"scripts": {
"css:prod": "pnpm --package=autoprefixer@^10.0.2 --package=postcss@^8.3.3 --package=tailwindcss@^3.0.0 dlx tailwindcss --minify -i ./src/resources/tailwind.css -c ./tailwind.config.js -o ./dist/tailwind.production.css",
"fmt": "prettier --write '**/*.{js,css,json,md}'",
"start": "pnpm prep && RUST_BACKTRACE=1 pnpm wrangler dev",
"prep": "node scripts/prepare.js",
"preview": "NODE_ENV=production pnpm prep && pnpm wrangler preview --watch",
"publish": "NODE_ENV=production pnpm prep && pnpm wrangler deploy",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Bennett Clement <[email protected]>",
"license": "MIT",
"devDependencies": {
"ejs": "^3.1.10",
"prettier": "^1.19.1",
"url-parse": "^1.5.10",
"wrangler": "^3.53.1",
"yaml": "^1.10.2"
}
}