picobook/package.json

57 lines
2.0 KiB
JSON
Raw Normal View History

2023-10-29 19:28:07 +00:00
{
"name": "firstack",
"version": "1.0.0",
"type": "module",
"description": "Firstack is a template repo for a tech stack.",
"main": "index.js",
"scripts": {
2024-03-25 00:29:43 -07:00
"makeuser": "npm run withenv ./scripts/makeuser.ts",
2023-10-29 19:28:07 +00:00
"dev-docker": "docker compose --profile dev up -d",
2024-03-25 00:29:43 -07:00
"dev-server": "echo \"starting server\" && npm run withenv ./src/server/index.ts",
"dev-watch-client": "npm run withenv ./scripts/watch.ts",
2023-10-31 20:31:17 -07:00
"dev-migrate": "source ./.env && pg-migrations apply --directory ./src/database/migrations",
2023-10-29 19:28:07 +00:00
"prod-migrate": "pg-migrations apply --directory ./src/database/migrations",
2024-03-25 00:29:43 -07:00
"prod-build-client": "npm run withenv ./scripts/build.ts",
2023-10-29 19:28:07 +00:00
"prod-docker": "docker compose --profile prod up -d",
2024-03-25 00:29:43 -07:00
"prod-start": "echo \"building frontend\" && npm run prod-build-client && echo \"${DATABASE_URL}\" && echo \"running migrations\" && npm run prod-migrate && echo \"starting server\" && npm run withenv ./src/server/index.ts",
"withenv": "tsx ./scripts/run-with-env.ts",
2023-10-29 19:28:07 +00:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.playbox.link/dylan/firstack.git"
},
"author": "",
"license": "UNLICENSED",
"dependencies": {
"@databases/pg": "^5.4.1",
"@fastify/cookie": "^9.0.4",
2024-03-25 00:29:43 -07:00
"@fastify/secure-session": "^7.1.0",
2023-10-29 19:28:07 +00:00
"@fastify/static": "^6.10.2",
"@firebox/components": "^0.1.5",
"@firebox/tsutil": "^0.1.2",
"@sinclair/typebox": "^0.31.5",
2024-03-25 00:29:43 -07:00
"dotenv": "^16.4.5",
2023-10-29 13:28:26 -07:00
"fastify": "^4.22.0",
2024-03-25 21:35:58 -07:00
"isomorphic-git": "^1.25.6",
"react-pico-8": "^4.1.0",
2024-03-25 00:29:43 -07:00
"react-router-dom": "^6.18.0",
2024-03-25 21:35:58 -07:00
"uuid": "^9.0.1"
2023-10-29 19:28:07 +00:00
},
"devDependencies": {
"@databases/pg-migrations": "^5.0.2",
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.1",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
2024-03-25 00:29:43 -07:00
"@types/uuid": "^9.0.7",
2023-10-29 19:28:07 +00:00
"esbuild": "^0.19.2",
"nodemon": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
2024-03-25 00:36:52 -07:00
"tsx": "^4.7.1",
2023-10-29 19:28:07 +00:00
"typescript": "^5.2.2"
}
}