-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.83 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "graphqlrealestatets",
"version": "1.0.0",
"description": "This project is a property listing website that utilizes GraphQL in TypeScript for querying property data and performing mutations for user interactions. Users can search for properties, view property details, and contact sellers.",
"main": "",
"scripts": {
"build": "npx tsc",
"start:prod": "node dist/app.js",
"start:dev": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BaseMax/GraphQLRealEstateTS.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BaseMax/GraphQLRealEstateTS/issues"
},
"homepage": "https://github.com/BaseMax/GraphQLRealEstateTS#readme",
"dependencies": {
"@prisma/client": "^5.1.1",
"@types/dotenv": "^8.2.0",
"@types/passport": "^1.0.12",
"@types/passport-jwt": "^3.0.9",
"apollo-server": "^3.12.0",
"apollo-server-express": "^3.12.0",
"bcrypt": "^5.1.1",
"class-validator": "^0.14.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"graphql": "^15.8.0",
"graphql-scalars": "^1.22.2",
"jsonwebtoken": "^9.0.1",
"jwt-passport": "^0.0.5",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.1.13",
"supertest": "^6.3.3",
"tsyringe": "^4.8.0",
"type-graphql": "^1.1.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"concurrently": "^8.2.1",
"eslint": "^8.47.0",
"jest": "^29.6.4",
"nodemon": "^3.0.1",
"prisma": "^5.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"tsconfig-paths": "^4.2.0"
}
}