-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.78 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.78 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
{
"name": "ballog_backend",
"version": "1.0.0",
"private": true,
"main": "dist/main.js",
"repository": "https://github.com/Ball-log/backend",
"author": "김성준 <bandalgomim@naver.com>",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.626.0",
"@aws-sdk/s3-request-presigner": "^3.626.0",
"@babel/preset-env": "^7.25.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"aws-sdk": "^2.1670.0",
"axios": "^1.7.2",
"babel-loader": "^9.1.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"moment-timezone": "^0.5.45",
"mysql2": "^3.10.3",
"playwright": "^1.46.1",
"redis": "^4.6.15",
"socket.io": "^4.7.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-loader": "^9.5.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@eslint/js": "^9.7.0",
"@jest/globals": "^29.7.0",
"@stylistic/eslint-plugin": "^2.3.0",
"@types/node": "^22.2.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"openapi-types": "^12.1.3",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon",
"start:dist": "webpack --mode production & node ./dist/main.js",
"start": "node main.js",
"build": "webpack --mode production"
}
}