-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.83 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
{
"name": "medusa",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "NODE_ENV=production node dist/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc -p .",
"docs": "apidoc -i ./src -e node_modules -o ./public/docs",
"dev-windows": "node src/index.ts",
"test": ""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.17.1",
"@types/cors": "^2.8.6",
"@types/cron": "^1.7.1",
"@types/crypto-js": "^3.1.43",
"@types/ejs": "^2.7.0",
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^8.3.5",
"@types/lodash": "^4.14.149",
"@types/nodemailer": "^6.2.2",
"@types/oracledb": "^4.0.5",
"@types/qs": "^6.9.0",
"@types/socket.io": "^2.1.4",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"eslint": "^6.7.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.1",
"ts-node": "^8.5.2",
"typescript": "^3.9.2"
},
"dependencies": {
"@types/ip": "^1.1.0",
"@types/mongoose": "^5.5.32",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cron": "^1.7.2",
"crypto-js": "^3.1.9-1",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"ip": "^1.1.5",
"jsonschema": "^1.2.5",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mongoose": "^5.9.15",
"nodemailer": "^6.3.1",
"oracledb": "^4.2.0",
"qs": "^6.9.1",
"reflect-metadata": "^0.1.13",
"socket.io": "^2.3.0",
"socketio-jwt": "^4.5.0"
}
}