-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 890 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 890 Bytes
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
{
"name": "thunder-server",
"version": "0.1.0",
"description": "A companion server which handles Thunder related services",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "nodemon src/index.ts",
"serve": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Hamlet Jiang Su",
"license": "AGPL-3.0-only",
"dependencies": {
"@parse/node-apn": "^6.5.0",
"date-fns": "^4.1.0",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"lemmy-js-client": "^0.19.4-alpha.18",
"node-cron": "^4.2.1",
"pg": "^8.16.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.7",
"undici": "^7.13.0"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.15.5",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}