-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
{
"name": "trips-api",
"version": "1.0.0",
"description": "",
"main": "build/src/index.js",
"scripts": {
"build": "npx tsc",
"start": "node build/src/index.js --es-module-specifier-resolution=node",
"dev": "ts-node-dev -r tsconfig-paths/register src/index.ts",
"seed": "ts-node-dev -r tsconfig-paths/register src/shared/seed/index.ts",
"test": "jest --no-cache --watchAll",
"prepare": "npx ts-patch install -s"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/pg": "^8.10.2",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.48.0",
"jest": "^29.6.4",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"ts-patch": "^3.0.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6",
"typescript-transform-paths": "^3.4.6",
"undefined": "^0.1.0"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.1",
"pg": "^8.11.1",
"ts-node": "^10.9.1",
"uuid": "^9.0.0",
"zod": "^3.21.4"
}
}