forked from shubhsk88/realbnb-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.4 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "realbnb-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/index.ts",
"dev2": "nodemon dist/src/index.js",
"watch": "tsc -w",
"ts-gen": "tsc .",
"build": "tsc && mkdir -p ./dist/src/schema && cp ./src/schema/*.graphql ./dist/src/schema",
"start": "node ./dist/src/index.js",
"seed": "ts-node -r tsconfig-paths/register src/algolia.ts",
"generate": "graphql-codegen --config codegen.yml",
"watch-prisma": "nodemon --exec prisma migrate dev --preview-feature prisma/schema.prisma"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@apollo/client": "^3.3.6",
"@graphql-codegen/cli": "1.20.0",
"@graphql-codegen/typescript": "^1.20.0",
"@graphql-codegen/typescript-operations": "^1.17.13",
"@graphql-codegen/typescript-react-apollo": "^2.2.1",
"@graphql-codegen/typescript-resolvers": "1.18.1",
"@prisma/cli": "2.14.0",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.9",
"@types/express-jwt": "^6.0.0",
"@types/helmet": "^4.0.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.20",
"@types/twilio": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"concurrently": "^5.3.0",
"eslint": "^7.17.0",
"eslint-plugin-prettier": "^3.3.1",
"graphql-codegen-apollo-next-ssr": "^1.2.2",
"tsconfig-paths": "^3.9.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@prisma/client": "^2.15.0",
"@jackfranklin/test-data-bot": "^1.3.0",
"algoliasearch": "^4.8.4",
"apollo-server-express": "^2.19.1",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.23.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"global": "^4.4.0",
"graphql": "^15.4.0",
"graphql-scalars": "^1.7.0",
"graphql-tools": "^7.0.2",
"helmet": "^4.3.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"nanoid": "^3.1.20",
"nodemon": "^2.0.7",
"stripe": "^8.131.1",
"twilio": "^3.54.2"
},
"volta": {
"node": "14.15.4"
},
"_moduleAliases": {
"@/src": "dist/src",
"@/types": "dist/types",
"@/src/utils": "dist/src/utils"
}
}