-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 818 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 818 Bytes
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
{
"name": "ride",
"version": "1.0.0",
"main": "src/main.ts",
"license": "MIT",
"scripts": {
"dev": "nodemon src/main.ts",
"test": "npx jest",
"test:watch": "npx jest --watch",
"docker:start": "docker compose up -d",
"docker:stop": "docker compose stop",
"docker:clean": "docker compose rm -fsv"
},
"dependencies": {
"@hapi/hapi": "^21.4.3",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.4",
"axios": "^1.11.0",
"dotenv": "^17.2.2",
"express": "^4.18.2",
"jest": "^29.6.4",
"nodemon": "^3.0.1",
"pg-promise": "^11.5.4",
"sinon": "^21.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/sinon": "^17.0.4",
"@types/uuid": "^10.0.0"
}
}