-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.81 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
{
"name": "jtl-reporter-be",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc",
"dev": "TS_NODE=true ts-node src/server.ts",
"start": "node ./dist/server.js",
"migrate": "node-pg-migrate",
"test:unit": "jest --config=jest-unit.config.js -w=5 --coverage",
"test:contract": "jest --config=contract.config.js -w=5",
"test:integration": "TS_NODE=true jest --forceExit --config=integration.config.js --runInBand",
"lint": "eslint -c .eslintrc --quiet --ext .ts .",
"lint:fix": "eslint -c .eslintrc --quiet --ext .ts . --fix",
"ts:check": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@breejs/ts-worker": "^2.0.0",
"axios": "^1.7.5",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"boom": "^7.2.0",
"bree": "^9.2.4",
"compression": "^1.7.4",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-winston": "^4.2.0",
"fast-csv": "^4.3.6",
"helmet": "^6.2.0",
"joi": "^14.3.1",
"jsonwebtoken": "^9.0.1",
"mathjs": "^11.12.0",
"mixpanel": "^0.18.0",
"moment": "^2.30.1",
"multer": "^1.4.5-lts.1",
"node-pg-migrate": "^6.2.2",
"pg": "^8.12.0",
"pg-promise": "^11.9.1",
"uuid": "^9.0.1",
"winston": "^3.14.2",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz"
},
"devDependencies": {
"@types/boom": "^7.2.0",
"@types/express": "^4.17.14",
"@types/jest": "^29.1.1",
"@types/multer": "^1.3.7",
"@types/supertest": "^2.0.8",
"@types/swagger-ui-express": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"jest": "^29.2.2",
"supertest": "^4.0.2",
"ts-jest": "^29.0.3",
"ts-node": "10.9.1",
"typescript": "^4.5.2"
}
}