2024-04-19 04:21:19 +00:00
|
|
|
{
|
|
|
|
"name": "firstack",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"type": "module",
|
|
|
|
"description": "Firstack is a template repo for a tech stack.",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"dev-docker": "docker compose --profile dev up -d",
|
2024-04-24 18:54:55 -07:00
|
|
|
"dev-server": "npm run withenv ./src/server/index.ts",
|
|
|
|
"dev-build-client": "npm run withenv ./scripts/build.ts",
|
2024-04-20 23:28:33 -07:00
|
|
|
"dev-watch-client": "npm run withenv ./scripts/watch.ts",
|
2024-04-24 18:54:55 -07:00
|
|
|
"dev-start": "echo \"building frontend\" && npm run dev-build-client && echo \"starting server\" && npm run dev-server",
|
2024-04-20 23:28:33 -07:00
|
|
|
"prod-build-client": "npm run withenv ./scripts/build.ts",
|
2024-04-19 04:21:19 +00:00
|
|
|
"prod-docker": "docker compose --profile prod up -d",
|
2024-04-24 18:54:55 -07:00
|
|
|
"prod-server": "npm run withenv ./src/server/index.ts",
|
|
|
|
"prod-start": "echo \"building frontend\" && npm run prod-build-client && echo \"starting server\" && npm run prod-server",
|
2024-04-20 23:28:33 -07:00
|
|
|
"withenv": "tsx ./scripts/run-with-env.ts",
|
2024-04-24 18:54:55 -07:00
|
|
|
"make-svgs": "npm run withenv ./scripts/make-svgs.ts",
|
|
|
|
"compile-content": "npm run withenv ./scripts/compile-content.ts",
|
2024-04-19 04:21:19 +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",
|
|
|
|
"@fastify/static": "^6.10.2",
|
|
|
|
"@firebox/components": "^0.1.7",
|
|
|
|
"@firebox/tsutil": "^0.1.2",
|
|
|
|
"@sinclair/typebox": "^0.31.5",
|
2024-04-20 23:28:33 -07:00
|
|
|
"@types/katex": "^0.16.7",
|
2024-04-24 18:54:55 -07:00
|
|
|
"@types/object-hash": "^3.0.6",
|
2024-04-19 04:21:19 +00:00
|
|
|
"dotenv": "^16.3.1",
|
2024-04-24 18:54:55 -07:00
|
|
|
"execa": "^8.0.1",
|
2024-04-20 23:28:33 -07:00
|
|
|
"fastify": "^4.22.0",
|
|
|
|
"katex": "^0.16.10",
|
2024-04-24 18:54:55 -07:00
|
|
|
"object-hash": "^3.0.0",
|
2024-04-20 23:28:33 -07:00
|
|
|
"tsx": "^4.7.2"
|
2024-04-19 04:21:19 +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",
|
|
|
|
"esbuild": "^0.19.2",
|
|
|
|
"nodemon": "^3.0.1",
|
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-dom": "^18.2.0",
|
|
|
|
"react-icons": "^4.10.1",
|
|
|
|
"ts-node": "^10.9.1",
|
|
|
|
"typescript": "^5.2.2"
|
|
|
|
}
|
|
|
|
}
|