-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
{
"name": "rentiny-backend",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"engines": {
"node": "20.9.0"
},
"scripts": {
"server_": "ts-node-dev backend/src/index",
"server": "ts-node backend/src/index",
"client": "npm start --prefix frontend",
"server-nodemon": "nodemon --exec ts-node backend/src/index",
"dev": "concurrently \"npm run server_\" \"npm run client\"",
"seed": "ts-node backend/temp/seed.ts",
"clear": "ts-node backend/temp/clear.ts",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"keywords": [],
"author": "YAHYA UNLU",
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/google.maps": "^3.48.7",
"@types/graphql": "^14.5.0",
"@types/lodash.merge": "^4.6.6",
"@types/mongodb": "^4.0.7",
"@types/node": "^17.0.21",
"@types/stripe": "^8.0.417",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"concurrently": "^7.0.0",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8"
},
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.3.13",
"apollo-server-express": "^3.6.4",
"body-parser": "^1.19.2",
"cloudinary": "^1.30.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"googleapis": "^99.0.0",
"graphql": "^16.3.0",
"graphql-tools": "^8.2.0",
"lodash.merge": "^4.6.2",
"mongodb": "^4.4.1",
"stripe": "^9.1.0",
"typescript": "^4.6.2"
}
}