-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.21 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
{
"name": "listings-service",
"version": "1.0.0",
"description": "Nodejs with typescript graphql api crud example",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts"
},
"keywords": ["nodejs", "typescript", "graphql", "mongoose", "typegoose", "express", "type-graphql"],
"author": "Paul Conesa",
"repository": {
"type": "git",
"url": "git+https://github.com/solidgraph/graphql-crud-api"
},
"license": "ISC",
"dependencies": {
"@typegoose/typegoose": "^9.12.1",
"apollo-server": "^3.10.3",
"apollo-server-express": "^3.10.3",
"bcrypt": "^5.1.0",
"class-validator": "^0.13.2",
"config": "^3.3.8",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"graphql": "15.x",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.7.0",
"nanoid": "^4.0.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/config": "^3.3.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"ts-node-dev": "^2.0.0"
}
}