-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.9 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.9 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "mclass_server",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"start:staging": "NODE_ENV=staging node ./dist/index.js",
"dev": "nodemon",
"dev:db": "docker-compose -f docker-compose.dev.yml up -d",
"dev:db:down": "docker-compose -f docker-compose.dev.yml down",
"dev:db:reset": "docker-compose -f docker-compose.dev.yml down -v && docker-compose -f docker-compose.dev.yml up -d",
"studio": "npx prisma studio",
"dev:full": "npm run dev:db && npm run dev",
"dev:all": "concurrently \"npm run dev:full\" \"npm run studio\"",
"dev:server": "npm run dev:db && nodemon",
"dev:studio": "npm run dev:db && npx prisma studio",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:clean": "rm -f test.db",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"check": "npm run lint && npm run test",
"pre-commit": "npm run lint && npm run format",
"prepare": "husky",
"load-test:local": "powershell -ExecutionPolicy Bypass -File scripts/run-local-load-test.ps1",
"load-test:signup": "artillery run scripts/artillery-signup-test-local.yml",
"load-test:enrollment": "artillery run scripts/artillery-enrollment-test-local.yml",
"deploy:precheck": "node scripts/deployment-precheck.js",
"deploy:redis-test": "node scripts/redis-connection-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yoonhojoon/mclass_server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yoonhojoon/mclass_server/issues"
},
"homepage": "https://github.com/Yoonhojoon/mclass_server#readme",
"description": "",
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"overrides": {
"passport-oauth2": {
"passport-kakao": "1.0.1"
}
},
"resolutions": {
"passport-oauth2": "1.6.1"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.1.0",
"@prisma/client": "^6.13.0",
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.19",
"@types/cron": "^2.0.1",
"@types/handlebars": "^4.0.40",
"@types/jsonwebtoken": "^9.0.10",
"@types/nodemailer": "^6.4.17",
"@types/pg": "^8.15.5",
"@types/swagger-ui-express": "^4.1.8",
"aws-sdk": "^2.1692.0",
"bcrypt": "^6.0.0",
"connect-redis": "^9.0.0",
"cors": "^2.8.5",
"cron": "^4.3.3",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-session": "^1.18.2",
"handlebars": "^4.7.8",
"ioredis": "^5.7.0",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^7.0.5",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-kakao": "^1.0.1",
"passport-naver": "^1.0.6",
"pg": "^8.16.3",
"prisma": "^6.13.0",
"prom-client": "^15.1.3",
"reflect-metadata": "^0.2.2",
"swagger-ui-express": "^5.0.1",
"winston": "^3.17.0",
"zod": "^4.0.17"
},
"devDependencies": {
"@artilleryio/playwright-reporter": "^1.1.3",
"@eslint/js": "^9.32.0",
"@types/express": "^5.0.3",
"@types/express-session": "^1.18.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.16",
"@types/supertest": "^6.0.3",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"concurrently": "^9.2.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"husky": "^9.1.7",
"jest": "^30.0.5",
"lint-staged": "^16.1.2",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"supertest": "^7.1.4",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}