faq-website/package.json

31 lines
933 B
JSON
Raw Permalink Normal View History

2024-07-05 23:58:03 +00:00
{
"name": "faq-website",
"version": "0.0.1",
"description": "",
2024-07-06 01:07:28 +00:00
"main": "server.js",
2024-07-05 23:58:03 +00:00
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"web": "exec node server.js # This will not work on windows, use node server.js like normal there. I'm sorry. As for other operating systems, if `npm run` uses sh -c internally, this will avoid leaving an extra process behind, so it's worth it in my opinion. If you disagree, open an issue about it."
},
"repository": {
"type": "git",
"url": "https://git.h.hackclub.app/9pfs/faq-website.git"
},
"author": "h@hackclub.app",
2024-07-06 00:26:58 +00:00
"license": "AGPL-3.0-or-later",
"devDependencies": {
2024-07-06 01:07:28 +00:00
"@types/express": "^4.17.21",
2024-08-04 03:42:08 +00:00
"@types/node": "^22.0.0",
2024-07-06 01:14:20 +00:00
"prettier": "^3.3.2",
2024-07-06 00:26:58 +00:00
"prisma": "^5.16.1"
},
"bin": {
"prisma": "bin/prisma"
2024-07-06 01:07:28 +00:00
},
"dependencies": {
"@prisma/client": "^5.16.1",
"express": "^4.19.2"
},
"type": "module"
2024-07-05 23:58:03 +00:00
}