-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (43 loc) · 1.2 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
{
"name": "levains",
"version": "1.0.0",
"description": "levains module",
"main": "src/app.ts",
"scripts": {
"prod": "NODE_ENV=prod node src/dist/app.js",
"dev": "cross-env NODE_ENV=dev SERVER_PORT=3001 nodemon --watch src --exec \\\"ts-node\\\" src/app.ts",
"api-docs": "node src/swagger/swagger.config.js"
},
"author": "CokeLee777",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.1271.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"knex": "^2.3.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"swagger-autogen": "^2.22.0",
"swagger-ui-express": "^4.6.0",
"ts-custom-error": "^3.3.1"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/knex": "^0.16.1",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/swagger-ui-express": "^4.1.3",
"@types/http-status-codes": "^1.2.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}