-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.77 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
{
"name": "sweepic-server",
"type": "module",
"version": "1.0.0",
"description": "Sweepic 프로젝트",
"main": "app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon -e js,json,prisma,ts --exec \"prisma generate && tsx src/app.ts\"",
"build": "tsx scripts/build.ts",
"start": "node dist/app.cjs",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run lint"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.726.1",
"@aws-sdk/s3-request-presigner": "^3.730.0",
"@prisma/client": "^6.1.0",
"@types/multer": "^1.4.12",
"@types/multer-s3": "^3.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^5.0.0",
"http-status-codes": "^2.3.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"mysql2": "^3.12.0",
"prisma": "^6.1.0",
"swagger-autogen": "^2.23.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tsoa": "^6.6.0",
"uuid": "^11.0.5"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.1",
"@types/node": "^22.10.3",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.16",
"@types/swagger-ui-express": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"esbuild": "^0.24.2",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^9.17.0",
"gts": "^6.0.2",
"nodemon": "^3.1.9",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}