-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.5 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
{
"name": "link",
"type": "module",
"version": "1.0.0",
"main": "dist/main.js",
"repository": "https://github.com/osuplace/link",
"author": "April <[email protected]>",
"license": "AGPL-3.0-or-later",
"packageManager": "[email protected]",
"dependencies": {
"@auth/core": "file:./auth.js/packages/core",
"@auth/express": "file:./auth.js/packages/frameworks-express",
"@auth/prisma-adapter": "file:./auth.js/packages/adapter-prisma",
"@prisma/client": "^5.11.0",
"@types/ejs": "^3.1.5",
"cookie-parser": "^1.4.6",
"discord-api-types": "^0.37.74",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.1",
"ejs": "^3.1.9",
"express": "^4.18.3",
"express-rate-limit": "^7.2.0",
"oauth4webapi": "^2.4.0",
"prisma": "^5.11.0"
},
"scripts": {
"build": "tsc",
"start": "node .",
"register": "node dist/script/register.js",
"db:dev": "dotenv -e .env -c -- prisma db push",
"db:commit": "dotenv -e .env -c -- prisma migrate dev",
"db:prod": "yarn db:client && dotenv -e .env -c -- prisma migrate deploy",
"db:client": "dotenv -e .env -c -- prisma generate",
"db:studio": "dotenv -e .env -c -- prisma studio"
},
"devDependencies": {
"@types/cookie-parser": "^1",
"@types/express": "^4.17.21",
"@types/node": "^20.11.28",
"typescript": "^5.4.2"
},
"imports": {
"#link/*": "./dist/*"
},
"resolutions": {
"oauth4webapi@npm:^2.4.0": "patch:oauth4webapi@npm%3A2.10.3#~/.yarn/patches/oauth4webapi-npm-2.10.3-a155527f48.patch"
}
}