-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 KB
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
{
"name": "cards",
"main": "dist/main.js",
"type": "module",
"private": true,
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"dev": "tsx src/main.ts",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"db:seed": "tsx scripts/database/seed.ts",
"db:destroy": "tsx scripts/database/destroy.ts",
"generate:schema": "tsx scripts/generate_schema.ts"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^20.4.9",
"@types/probe-image-size": "^7.2.0",
"@types/prompts": "^2.4.4",
"prettier": "^3.0.1",
"prisma": "^5.1.1",
"ts-node": "^10.9.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
},
"dependencies": {
"@adminjs/express": "^6.0.0",
"@adminjs/prisma": "^5.0.1",
"@apollo/server": "^4.9.1",
"@pothos/core": "^3.33.0",
"@pothos/plugin-prisma": "^3.57.0",
"@prisma/client": "^5.1.1",
"@prisma/internals": "^5.1.1",
"adminjs": "^7.2.0",
"chalk": "^5.3.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-formidable": "^1.2.0",
"express-session": "^1.17.3",
"graphql": "^16.7.1",
"image-size": "^1.0.2",
"morgan": "^1.10.0",
"probe-image-size": "^7.2.3",
"prompts": "^2.4.2",
"winston": "^3.10.0"
}
}