-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.32 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "skymoth",
"scripts": {
"build": "tsc -p tsconfig.json && cp -r public dist/public && cp -r views dist/views",
"start": "prisma migrate deploy && node dist/index.js",
"start:scheduler": "node dist/lib/tasks/scheduler.js",
"dev": "pnpm run dev:server",
"dev:server": "nodemon --exec ts-node index.ts",
"dev:scheduler": "nodemon --exec ts-node lib/tasks/scheduler.ts",
"migrate": "prisma migrate dev",
"generate": "prisma generate",
"tailwind:css": "concurrently \"tailwindcss -i ${PWD}/public/styles/tailwind.css -o ${PWD}/public/styles/style.css --watch\"",
"tailwind:build": "tailwindcss -i ${PWD}/public/styles/tailwind.css -o ${PWD}/public/styles/style.css"
},
"dependencies": {
"@atproto/api": "^0.13.23",
"@atproto/xrpc": "^0.6.5",
"@fastify/cookie": "^11.0.1",
"@fastify/formbody": "^8.0.1",
"@fastify/jwt": "^9.0.2",
"@fastify/schedule": "^5.0.2",
"@fastify/session": "^11.0.2",
"@fastify/static": "^8.0.3",
"@fastify/view": "^10.0.1",
"@prisma/client": "^6.0.1",
"@sentry/node": "^8.45.1",
"@sentry/profiling-node": "^8.47.0",
"fastify": "^5.2.0",
"html-to-text": "^9.0.5",
"liquidjs": "^10.19.0",
"megalodon": "^10.0.7",
"node-html-parser": "^6.1.13",
"prisma": "^6.0.1",
"sharp": "^0.33.5",
"toad-scheduler": "^3.0.1"
},
"devDependencies": {
"@codedependant/semantic-release-docker": "^5.0.3",
"@tailwindcss/typography": "^0.5.15",
"@types/html-to-text": "^9.0.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"daisyui": "^4.12.20",
"nodemon": "^3.1.7",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"semantic-release": "^24.2.0",
"tailwindcss": "^3.4.16",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@codedependant/semantic-release-docker",
{
"dockerProject": "thilobillerbeck",
"dockerImage": "skymoth",
"dockerPlatform": [
"linux/amd64",
"linux/arm64"
],
"dockerRegistry": "ghcr.io"
}
]
]
},
"nodemonConfig": {
"ignore": [
"dist",
"node_modules"
]
}
}