-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 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
45
{
"name": "keep-safe-graphql",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "tsc -w",
"dev": "nodemon dist/index.js",
"build": "tsc",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vincenzopalazzo/keep-safe-graphql.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vincenzopalazzo/keep-safe-graphql/issues"
},
"homepage": "https://github.com/vincenzopalazzo/keep-safe-graphql#readme",
"dependencies": {
"@graphql-tools/schema": "^8.5.0",
"apollo-server-core": "^3.9.0",
"apollo-server-express": "^3.9.0",
"class-validator": "^0.13.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"graphql": "^15.8.0",
"graphql-ws": "^5.9.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"ws": "^8.8.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^18.0.0",
"@types/ws": "^8.5.3",
"nodemon": "^2.0.18",
"typescript": "^4.7.4"
}
}