-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "graphql-api",
"version": "1.0.0",
"description": "GraphQL API project",
"main": "build/server.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"start": "node build/server.js",
"build": "tsc",
"postinstall": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saniemehmet/graphql-api.git"
},
"keywords": [
"graphql"
],
"author": "Sanie Mehmet",
"license": "ISC",
"bugs": {
"url": "https://github.com/saniemehmet/graphql-api/issues"
},
"homepage": "https://github.com/saniemehmet/graphql-api#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express-jwt": "^6.0.4",
"@types/jsonwebtoken": "^8.5.8",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.4"
},
"dependencies": {
"@typegoose/typegoose": "^9.8.1",
"apollo-server-express": "^3.7.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"class-validator": "^0.13.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-jwt": "^6.1.1",
"graphql": "^15.3.0",
"http": "0.0.1-security",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.6.0",
"mongoose": "^6.3.4",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typedi": "^0.10.0"
}
}