-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.19 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "node-starterkit-ts",
"version": "1.0.0",
"description": "nodejs starterkit with typescript environment implemented by namhoon",
"repository": {
"type": "git",
"url": "https://github.com/frontalnh/node-starterkit-ts"
},
"scripts": {
"test": "jest -i",
"test:dev": "jest -i --no-cache --watch",
"test:unit": "jest -i --no-cache --watch -t ",
"start": "node ./dist/index.js",
"start:dev": "node ./dist/index.js",
"build": "tsc",
"build:dev": "tsc --watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.4.3",
"@frontalnh/json-dot-parser": "^0.1.7",
"@sendgrid/mail": "^6.3.1",
"@sentry/node": "^5.1.0",
"@types/assert": "^1.4.2",
"@types/bcrypt": "^3.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.16.1",
"@types/joi": "^14.3.3",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^11.13.7",
"@types/swagger-jsdoc": "0.0.2",
"@types/swagger-ui-express": "^3.0.0",
"@types/winston": "^2.4.4",
"aws-sdk": "^2.442.0",
"axios": "^0.21.1",
"babel-loader": "^8.0.5",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"deep-diff": "^1.0.2",
"dotenv": "^7.0.0",
"dotenv-webpack": "^1.7.0",
"expo-server-sdk": "^3.2.0",
"express": "^4.16.4",
"fcm-node": "^1.4.0",
"firebase-admin": "^7.3.0",
"http": "0.0.0",
"hyperwallet-sdk": "^1.3.1",
"jest-cli": "^24.7.1",
"joi": "^14.3.1",
"js-yaml": "^3.13.1",
"json2csv": "^4.5.0",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.0",
"multer": "^1.4.1",
"multer-s3": "^2.9.0",
"mysql": "^2.17.1",
"mysql2": "^1.6.5",
"nodemailer": "^6.1.1",
"nodemailer-sendgrid-transport": "^0.2.0",
"nodemon": "^1.18.11",
"passport": "^0.4.0",
"path": "^0.12.7",
"pm2": "^3.5.0",
"querystring": "^0.2.0",
"randomstring": "^1.1.5",
"raven": "^2.6.4",
"redis": "^3.1.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.7.5",
"sequelize-typescript": "^0.6.10",
"socket.io": "^2.2.0",
"supertest": "^4.0.2",
"swagger-jsdoc": "^3.2.9",
"swagger-model-generator-ts": "^0.3.7",
"swagger-ui-express": "^4.0.2",
"ts-loader": "^5.4.3",
"tsc": "^1.20150623.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5",
"typescript-require": "^0.2.10",
"webpack": "^4.30.0",
"winston": "^3.2.1",
"winston-logstash": "^0.4.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.4.3",
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.123",
"babel-cli": "^6.26.0",
"jest": "^24.7.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"webpack-cli": "^3.3.1",
"webpack-node-externals": "^1.7.2"
},
"_moduleAliases": {
"@domain": "dist/domain",
"@infra": "dist/infra",
"@util": "dist/util",
"@common": "dist/common",
"@interfaces": "dist/interfaces",
"@utils": "dist/utils",
"@api": "dist/api",
"@root": "dist"
}
}