-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.23 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
{
"name": "rentiny",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node-dev --respawn backend/src/index.ts",
"client": "npm start --prefix frontend",
"server": "nodemon --exec ts-node backend/src/index.ts",
"dev": "concurrently \"npm run start\" \"npm run client\"",
"build": "tsc -p backend/build",
"seed": "ts-node backend/temp/seed.ts"
},
"keywords": [],
"author": "YAHYA UNLU",
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/graphql": "^14.5.0",
"@types/lodash.merge": "^4.6.6",
"@types/mongodb": "^4.0.7",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"dotenv": "^16.0.0",
"eslint": "^8.11.0",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.2"
},
"dependencies": {
"apollo-server-express": "^3.6.4",
"body-parser": "^1.19.2",
"concurrently": "^7.0.0",
"express": "^4.17.3",
"graphql": "^16.3.0",
"graphql-tools": "^8.2.0",
"lodash.merge": "^4.6.2",
"mongodb": "^4.4.1"
}
}