-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"scripts": {
"build": "npx tsc",
"start": "node dist/src/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/src/index.js\"",
"test": "jest --coverage"
},
"dependencies": {
"@types/express-validator": "^3.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"http-errors": "^2.0.0",
"http-status-codes": "^2.2.0",
"knex": "^2.4.2",
"morgan": "^1.10.0",
"mysql2": "^3.2.3",
"objection": "^3.0.1",
"winston": "^3.8.2"
},
"name": "stashaway-assessment",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.5.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.13",
"@types/supertest": "^2.0.12",
"concurrently": "^8.0.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}