-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.33 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.33 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
48
49
{
"name": "users",
"version": "0.1.0",
"description": "An implementation of a users service, useful for future projects",
"author": "Revanth Pothukuchi <revanthpothukuchi123@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"test": "jest",
"prepare": "husky install"
},
"dependencies": {
"@prisma/client": "4.1.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"helmet": "^5.1.1",
"morgan": "^1.10.0",
"uuid": "^8.3.2",
"zod": "^3.17.10"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.6",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prisma": "^4.1.1",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,json,md,yml}": "prettier --write"
}
}