-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 4.1 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
115
116
117
118
119
120
{
"name": "symbol",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production ts-node src/server.ts",
"dev": "cross-env ts-node-dev --respawn --no-notify src/server.ts",
"local": "cross-env NODE_ENV=local ts-node-dev --respawn --no-notify src/server.ts",
"build": "tsc",
"lint": "cross-env eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"doc": "cross-env typedoc --out ./docs/ ./src/ --tsconfig ./tsconfig.json",
"test": "cross-env NODE_ENV=test jest",
"pretest": "cross-env NODE_ENV=test"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@google-cloud/storage": "^5.1.1",
"@hapi/joi": "^17.1.1",
"@types/sinon": "^9.0.4",
"@types/supertest": "^2.0.10",
"ajv": "^6.12.2",
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"date-fns": "^2.12.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"express-session": "^1.17.1",
"express-winston": "^4.0.3",
"googleapis": "^52.1.0",
"helmet": "^3.22.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mkdirp": "^1.0.4",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"sequelize": "^6.1.0",
"uuid": "^8.0.0"
},
"devDependencies": {
"@microsoft/tsdoc": "^0.12.20",
"@sentry/integrations": "^5.15.5",
"@sentry/node": "^5.15.5",
"@sentry/typescript": "^5.15.5",
"@types/ajv": "^1.0.0",
"@types/axios": "^0.14.0",
"@types/bcrypt": "^3.0.0",
"@types/bluebird": "^3.5.32",
"@types/body-parser": "^1.19.0",
"@types/chalk": "^2.2.0",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/csurf": "^1.9.36",
"@types/debug": "^4.1.5",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/express-rate-limit": "^5.0.0",
"@types/express-session": "^1.17.0",
"@types/express-winston": "^4.0.0",
"@types/hapi__joi": "^17.1.2",
"@types/helmet": "0.0.46",
"@types/hpp": "^0.2.1",
"@types/jest": "^26.0.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/method-override": "0.0.31",
"@types/mkdirp": "^1.0.1",
"@types/multer": "^1.4.3",
"@types/mysql": "^2.15.10",
"@types/newman": "^4.5.0",
"@types/node": "^13.13.4",
"@types/prettier": "^2.0.0",
"@types/uuid": "^7.0.3",
"@types/webpack": "^4.41.12",
"@types/webpack-dev-server": "^3.10.1",
"@types/webpack-merge": "^4.1.5",
"@types/webpack-node-externals": "^1.7.1",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"@typescript-eslint/typescript-estree": "^2.30.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-tsdoc": "^0.2.4",
"sequelize-cli": "^6.0.0",
"webpack": "^4.43.0",
"newman": "^5.1.0",
"jest": "^26.1.0",
"pm2": "^4.4.0",
"sinon": "^9.0.2",
"debug": "^4.1.1",
"supertest": "^4.0.2",
"ts-jest": "^26.1.1",
"prettier": "^2.0.5",
"ts-loader": "^7.0.2",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2",
"ts-node": "^8.9.1",
"ts-node-dev": "^1.0.0-pre.44",
"typedoc": "^0.17.8",
"typescript": "^3.8.3",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
}
}