forked from 25-1-capstone/Server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.03 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "Server",
"type": "module",
"version": "1.0.0",
"description": "25-1 Capstone Server",
"main": "app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/app.cjs",
"build": "tsx scripts/build.ts",
"dev": "nodemon -e js,json,prisma,ts --exec \"prisma generate && tsx src/app.ts\"",
"lint": "gts lint",
"compile": "tsc",
"fix": "gts fix",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run lint",
"swagger": "tsx swagger/swagger.ts",
"tsoa-swagger": "tsoa spec -c ./config/tsoa.json",
"tsoa-routes": "tsoa routes -c ./config/tsoa.json",
"clean": "gts clean"
},
"repository": "https://github.com/asjasj3964/Server.git",
"author": "asjasj3964 <asjasj3964@naver.com>",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.1.0",
"@quixo3/prisma-session-store": "^3.1.13",
"@tsoa/runtime": "^6.6.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^16.4.7",
"express": "^5.0.0-0",
"express-session": "^1.18.1",
"http-status-codes": "^2.3.0",
"mqtt": "^5.11.1",
"passport": "^0.7.0",
"passport-kakao": "^1.0.1",
"prisma": "^6.1.0",
"socket.io": "4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ws": "^8.18.1"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.1",
"@types/node": "^22.7.5",
"@types/passport": "^1.0.17",
"@types/passport-kakao": "^1.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"@types/ws": "^8.18.1",
"esbuild": "^0.24.2",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^9.17.0",
"gts": "^6.0.2",
"nodemon": "^3.1.9",
"tsoa": "^6.6.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.23.0"
}
}