Files
www_threefold_io/package.json
2022-07-21 06:12:44 +02:00

43 lines
1.3 KiB
JSON

{
"name": "website",
"description": "ThreeFold IO Website",
"private": true,
"scripts": {
"clean": "rimraf public && rimraf static/css",
"initcss": "node initcss.js",
"getContent": "node getContent.ts",
"start": "TAILWIND_MODE=watch NODE_ENV=development npm-run-all clean initcss --parallel dev:*",
"dev:postcss": "postcss css/index.css -o ./static/css/index.css --config ./postcss.config.js -w",
"dev:serve": "zola serve",
"build": "NODE_ENV=production npm-run-all clean prod:postcss prod:build",
"prod:postcss": "postcss css/index.css -o ./static/css/index.css --config ./postcss.config.js",
"prod:build": "zola build -o public"
},
"author": "",
"license": "MIT",
"browserslist": [
"last 4 versions",
"> 1%",
"maintained node versions"
],
"devDependencies": {
"autoprefixer": "^10.4.2",
"glob": "^7.1.7",
"glob-all": "^3.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.8",
"postcss-cli": "^8.3.1",
"postcss-csso": "^5.0.1",
"postcss-import": "^14.0.2",
"postcss-nesting": "^8.0.1",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.23",
"ts-rmb-http-client": "^1.0.3",
"typescript": "^4.5.5"
},
"dependencies": {
"express": "^4.18.1",
"ts-rmb-http-client": "^1.0.3"
}
}