-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.46 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
{
"name": "ofo-engine",
"version": "1.0.0",
"description": "The system behind OFO e-Money Application, inspired by OVO, brought to you by OFO Mania.",
"main": "lib/bootstrap",
"repository": "https://github.com/OFO-Mania/ofo-engine.git",
"author": "OFO Mania (https://github.com/OFO-Mania)",
"license": "Apache-2.0",
"private": false,
"scripts": {
"format": "prettier src/**/*.ts --config .prettierrc --write",
"dev": "ts-node src/bootstrap",
"dev:watch": "nodemon --exec npm run dev --ext 'ts'",
"build": "rimraf lib && tsc",
"start": "node lib/bootstrap",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"generate:certificate": "openssl req -nodes -new -x509 -keyout keys/server.key -out keys/server.cert"
},
"dependencies": {
"@sendgrid/mail": "^7.2.2",
"@sentry/node": "5.20.1",
"@tsed/ajv": "^5.61.1",
"@tsed/common": "^5.61.1",
"@tsed/core": "^5.61.1",
"@tsed/di": "^5.61.1",
"@tsed/multipartfiles": "^5.61.1",
"@tsed/platform-express": "^5.61.1",
"@tsed/swagger": "^5.61.1",
"@tsed/typeorm": "^5.61.1",
"ajv": "^6.12.3",
"argon2": "^0.26.2",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-redis": "^5.0.0",
"consolidate": "^0.15.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-favicon": "^2.0.1",
"express-rate-limit": "^5.1.3",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"redis": "^3.0.2",
"swagger-schema-official": "^2.0.0-bab6bed",
"ts-httpexceptions": "^4.1.0",
"twilio": "^3.48.1",
"typeorm": "^0.2.25",
"uuid": "^8.2.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.12",
"@types/compression": "^1.7.0",
"@types/connect-redis": "^0.0.14",
"@types/consolidate": "^0.14.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/express-rate-limit": "^5.0.0",
"@types/helmet": "^0.0.47",
"@types/jsonwebtoken": "^8.5.0",
"@types/method-override": "^0.0.31",
"@types/mocha": "^8.0.0",
"@types/multer": "^1.4.3",
"@types/node": "^14.0.26",
"@types/redis": "^2.8.25",
"@types/supertest": "^2.0.10",
"@types/swagger-schema-official": "^2.0.21",
"@types/uuid": "^8.0.0",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}