-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.12 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
{
"name": "my-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/",
"server": "nodemon ./server/index.ts",
"build": "tsc -p .",
"client": "npm run dev --prefix client",
"dev": "concurrently \"npm run client\" \"npm run server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ElhamFadel/Events-.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ElhamFadel/Events-/issues"
},
"homepage": "https://github.com/ElhamFadel/Events-#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.12",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@typegoose/typegoose": "^9.3.1",
"apollo-server-core": "^3.5.0",
"apollo-server-express": "^3.5.0",
"class-validator": "^0.13.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^16.1.0",
"mongoose": "^6.1.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1"
}
}