-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 868 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 868 Bytes
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
{
"name": "graphql-api",
"version": "1.0.0",
"description": "CRUD API + Search and filter APIs with Apollo graphql and PostgreSQL database",
"main": "index.js",
"scripts": {
"compile": "tsc",
"dev-server": "tsc-watch --noClear -p ./tsconfig.json --onSuccess \"node ./dist/index.js\"",
"start": "npm run compile && node ./dist/index.js",
"db-migrate": "prisma migrate dev --name init"
},
"author": "Yash Mistry",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.5.0",
"@prisma/client": "^4.12.0",
"bcryptjs": "^2.4.3",
"graphql": "^16.6.0",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.11",
"dotenv": "^16.0.3",
"prisma": "^4.12.0",
"tsc-watch": "^6.0.0",
"typescript": "^5.0.2"
}
}