-
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": "fullstack-apollo-graphql",
"version": "3.0.0",
"description": "Here I will try to build a application using apollo graphql and apollo graphql client with typescript node.js express.js and react.js.",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc -p ."
},
"keywords": [
"apollo-graphql",
"apollo-graphql-client",
"apollo-server",
"apollo-server-express",
"reactjs",
"nodejs",
"typescript",
"expressjs",
"mongodb"
],
"author": "Hossain Sahriar Kabir",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose": "^5.11.97",
"@types/validator": "^13.7.5",
"dotenv": "^16.0.1",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"apollo-server-core": "^3.10.0",
"apollo-server-express": "^3.10.0",
"bcryptjs": "^2.4.3",
"express": "^4.18.1",
"graphql": "^16.5.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.1",
"validator": "^13.7.0"
}
}