forked from medicomas/documed-backend-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.67 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
{
"name": "documed-backend-express",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"build": "npx tsc",
"build:digitalocean": "npm install --production=false && npm run build && npm ci",
"start": "node dist/src/server.js",
"dev": "tsx watch src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint 'src/**/*.{js,ts,tsx}' --quiet",
"lint:fix": "npx eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"prepare": "node -e \"if (process.env.NODE_ENV !== 'production') process.exit(1) \" || husky install",
"setupdb": "tsx scripts/setup-db.ts"
},
"author": "medicomas",
"dependencies": {
"@asteasolutions/zod-to-openapi": "^6.2.0",
"@hapi/boom": "^10.0.1",
"@prisma/client": "^5.4.2",
"@types/object.groupby": "^1.0.3",
"chalk": "4.1.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "4.18.2",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"object.groupby": "^1.0.1",
"swagger-ui-express": "^5.0.0",
"zod": "^3.22.4"
},
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.4",
"@types/morgan": "^1.9.9",
"@types/node": "^20.6.2",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "3.0.3",
"prettier-eslint": "^15.0.1",
"prisma": "^5.4.2",
"tsx": "3.12.10",
"typescript": "^5.2.2"
}
}