-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.68 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.68 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
{
"name": "ai-rena-backend",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "tsc"
},
"author": "gb6105 & GulSauce",
"license": "ISC",
"description": "",
"type": "module",
"imports": {
"#mock/*": "./dist/src/mock/*/index.js",
"#member/*": "./dist/src/member/*/index.js",
"#notice/*": "./dist/src/notice/*/index.js",
"#like/*": "./dist/src/like/*/index.js",
"#rank/*": "./dist/src/rank/*/index.js",
"#controller": "./dist/src/core/controller/index.js",
"#adapter/*": "./dist/src/core/adapter/*.js",
"#config/*": "./dist/src/core/config/*.js",
"#util/*": "./dist/src/core/util/*/index.js",
"#error/*": "./dist/src/core/error/*.js"
},
"dependencies": {
"@upstash/redis": "1.34.4",
"cookie-parser": "1.4.7",
"cors": "2.8.5",
"crypto-js": "4.2.0",
"dotenv": "16.4.7",
"express": "4.21.2",
"jsonwebtoken": "9.0.2",
"multer": "1.4.5-lts.1",
"multer-s3": "3.0.1",
"nodemailer": "6.10.0",
"pg": "8.13.1"
},
"devDependencies": {
"@types/cookie-parser": "1.4.8",
"@types/cors": "2.8.17",
"@types/crypto-js": "^4.2.2",
"@types/express": "5.0.0",
"@types/jsonwebtoken": "9.0.8",
"@types/multer": "1.4.12",
"@types/multer-s3": "3.0.3",
"@types/node": "22.10.7",
"@types/nodemailer": "6.4.17",
"@types/pg": "8.11.10",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.2",
"prettier": "3.4.2",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "5.7.3"
}
}