-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"author": "yonas",
"name": "prisma_api",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"dev": "nodemon src/server.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"test": "jest"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.24",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"nodemon": "^3.0.1",
"prettier": "^3.2.5",
"prisma": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@prisma/client": "^5.0.0",
"@types/jest": "^29.5.12",
"@types/supertest": "^6.0.2",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"jest": "^29.7.0",
"jsonwebtoken": "^8.5.1",
"lodash.merge": "^4.6.2",
"morgan": "^1.10.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2"
}
}