-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "contacts-api",
"version": "1.0.0",
"description": "API GraphQL to receive and save contacts of differences customers",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsnd --respawn --env-file=.env --transpile-only src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffeloy/contacts-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/jeffeloy/contacts-api/issues"
},
"homepage": "https://github.com/jeffeloy/contacts-api#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.9",
"poku": "^3.0.2",
"prisma": "^6.6.0",
"ts-node-dev": "^2.0.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@apollo/server": "^4.12.0",
"@prisma/client": "^6.6.0",
"body-parser": "^2.2.0",
"express": "^4.21.2",
"graphql": "^16.10.0",
"graphql-scalars": "^1.24.2",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.16.0",
"mongoose": "^8.14.0",
"reflect-metadata": "^0.2.2",
"type-graphql": "^2.0.0-rc.2"
}
}