-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.47 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
{
"name": "guide-back",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"swagger": "tsoa spec",
"docs": "npm run swagger",
"start": "cross-env NODE_ENV=production node ./dist/index.js",
"build": "tsc -b",
"dev": "nodemon --legacy-watch ./src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"amqplib": "^0.10.2",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"module-alias": "^2.2.2",
"moment": "^2.29.4",
"mongoose": "^6.5.2",
"mysql2": "^2.3.3",
"nanoid": "3.3.0",
"node-cron": "^3.0.2",
"sequelize": "^6.21.4",
"swagger-ui-express": "^4.5.0",
"tsoa": "^4.1.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/module-alias": "^2.0.1",
"@types/mongoose": "^5.11.97",
"@types/nanoid": "^3.0.0",
"@types/node": "^18.7.5",
"@types/node-cron": "^3.0.2",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"eslint": "^8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}