-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "qa-service",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node build/index.js",
"test": "jest --detectOpenHandles",
"test:perf": "tsc -p tsconfig.test.json && k6 run buildt/tests/performance.js"
},
"author": "burhan syed",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"k6": "^0.0.0",
"morgan": "^1.10.0",
"mysql2": "^3.6.5",
"supertest": "^6.3.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/k6": "^0.48.0",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.3",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}