-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.46 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.46 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
{
"name": "dmu-one-anyad-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --watch \"src/**/*.ts\" --exec \"ts-node\" src/index.ts",
"db": "./node_modules/.bin/ts-node ./src/migrations/migration-all-table.ts",
"api-docs": "swagger-cli bundle ./src/utils/swagger/openapi.yaml --outfile build/swagger.yaml --type yaml"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/multer": "^1.4.7",
"@types/node": "^18.7.18",
"@types/nodemailer": "^6.4.6",
"@types/passport": "^1.0.11",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.9.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.1",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"nodemailer": "^6.7.8",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"sequelize": "^6.23.0",
"swagger-cli": "^4.0.4",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.5.0",
"yamljs": "^0.3.0"
}
}