-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "diffusion.gg",
"scripts": {
"dev": "npx prisma db push && npm run migrate-discord && npm run launch",
"start": "npm run migrate-discord && npm run launch",
"launch": "npx prisma generate && ts-node main",
"randomWalk": "ts-node ./scripts/randomWalk",
"migrate-discord": "ts-node ./scripts/migrate_discord",
"migrate-db-prod": "npx prisma migrate deploy",
"airtable": "ts-node ./scripts/airtable.ts",
"format": "prettier --write -c ."
},
"dependencies": {
"@fastify/cors": "^8.1.0",
"@prisma/client": "^4.4.0",
"@sentry/node": "^7.12.1",
"@sentry/tracing": "^7.12.1",
"airtable": "^0.11.4",
"aws-sdk": "^2.1227.0",
"concurrently": "^7.3.0",
"date-fns": "^2.29.3",
"discord.js": "^14.12.1",
"dotenv": "^16.0.1",
"fastify": "^4.5.3",
"fastify-raw-body": "^4.0.0",
"jimp": "^0.16.1",
"node-fetch": "^2.6.7",
"openai": "^3.0.0",
"pg": "^8.8.0",
"stripe": "^10.6.0",
"uuid": "^8.3.2",
"prisma": "^4.4.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"@types/node-fetch": "^2.6.2",
"@types/pg": "^8.6.5",
"@types/uuid": "^8.3.4",
"husky": "^8.0.1",
"json-schema-to-ts": "^2.5.5",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"devDependencies": {},
"lint-staged": {
"*.{js,ts,css,md}": "prettier --write"
}
}