-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.39 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.39 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
{
"name": "campus",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"start": "nodemon --exec ts-node app.ts",
"prettify": "prettier --write *.ts **/*.ts",
"create_db": "ts-node ./src/database/config/create_db.ts",
"migrate": "ts-node ./src/database/config/migrate.ts",
"data": "ts-node ./src/database/data.ts",
"mapping": "ts-node ./src/database/mapping.ts",
"createJs": "node ./build/src/database/config/create_db.js",
"migrateJs": "node ./build/src/database/config/migrate.js",
"dataJs": "node ./build/src/database/data.js",
"mappingJs": "node ./build/src/database/mapping.js",
"dev": "nodemon build/server.js",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/artillery": "^1.6.3",
"@types/aws-sdk": "^2.7.0",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/hpp": "^0.2.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^3.0.0",
"@types/node": "^18.11.9",
"@types/node-schedule": "^2.1.0",
"@types/nodemailer": "^6.4.6",
"@types/passport": "^1.0.11",
"@types/passport-kakao": "^1.0.0",
"@types/sharp": "^0.31.0",
"aws-sdk": "^2.1274.0",
"axios": "^1.1.3",
"bcrypt": "^5.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"helmet": "^6.0.0",
"hpp": "^0.2.3",
"https": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"moment-timezone": "^0.5.40",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"mysql2": "^2.3.3",
"node-schedule": "^2.1.0",
"passport": "^0.6.0",
"passport-kakao": "^1.0.1",
"sequelize": "^6.25.5",
"sequelize-cli": "^6.5.2",
"sharp": "^0.31.2",
"typescipt": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.3.1",
"@types/validator": "^13.7.10",
"artillery": "^2.0.0-27",
"babel-jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
}
}