-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 KB
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
{
"name": "password-manager",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon ./src/app.ts",
"format": "prettier --write ./src && eslint ./src ",
"prepare": "husky",
"db:show": "npx prisma studio",
"db:format:schema": "npx prisma format",
"db:migrate:dev": "npx prisma migrate dev",
"db:generate": "npx prisma generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.18",
"@types/jsonwebtoken": "^9.0.5",
"@types/nodemailer": "^6.4.14",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"husky": "^9.0.10",
"nodemon": "^3.0.2",
"prettier": "3.2.5",
"prisma": "^5.9.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@prisma/client": "^5.9.1",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.2",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.9"
},
"description": ""
}