-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "ticker_server",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"clean": "rm -rf dist",
"start": "npm run clean && tsc && cpx \"src/resources/config.json\" \"dist/config\" && node dist/app.js",
"dev": "npm run clean && tsc && cpx \"src/resources/config.json\" \"dist/config\" && nodemon src/app.ts",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "karol",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/express-requests-logger": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cpx": "^1.5.0",
"eslint": "^8.46.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@sentry/node": "^7.61.0",
"axios": "^1.4.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-oauth2-jwt-bearer": "^1.5.0",
"express-openid-connect": "^2.16.0",
"express-requests-logger": "^4.0.0",
"routing-controllers": "^0.10.4",
"typedi": "^0.10.0",
"winston": "^3.10.0"
}
}