-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (87 loc) · 2.88 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
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
{
"name": "mahjong-training-camp-server",
"private": true,
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "nodemon -e yaml,ts,json --exec ts-node -r tsconfig-paths/register --files src/app.ts",
"start:prod": "node -r ./tsconfig-paths-bootstrap.js dist/app.js",
"lint": "eslint --ext .js,.ts src --color",
"lint:fix": "eslint --ext .js,.ts src --color --fix",
"format": "prettier --write {scripts,src}/**/*.{js,jsx,ts,tsx,scss,css,json}"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.309.0",
"@prisma/client": "^5.5.2",
"axios": "^0.21.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"form-data": "^3.0.1",
"helmet": "^4.4.1",
"jsonwebtoken": "^9.0.0",
"mariadb": "^2.5.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"node-cron": "^3.0.3",
"nodemon": "^2.0.4",
"oauth-1.0a": "^2.2.6",
"prompts": "^2.4.0",
"querystring": "^0.2.1",
"reflect-metadata": "^0.1.13",
"runtypes": "^6.5.1",
"sqlite3": "^5.0.0",
"streamifier": "^0.1.1",
"swagger-jsdoc": "^4.2.0",
"swagger-ui-express": "^4.1.4",
"tinify": "^1.7.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^3.9.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@babel/plugin-transform-modules-commonjs": "^7.12.13",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.8",
"@types/express-fileupload": "^1.1.5",
"@types/helmet": "0.0.48",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.1",
"@types/multer": "^1.4.5",
"@types/node": "18.15.5",
"@types/node-cron": "^3.0.11",
"@types/prompts": "^2.0.9",
"@types/streamifier": "^0.1.0",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^4.1.2",
"@types/tmp": "^0.2.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-airbnb-typescript": "^11.0.0",
"eslint-config-prettier": "^6.12.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0",
"prisma": "^5.5.2",
"typescript": "^5.0.2"
}
}