-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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
46
{
"name": "gql-ts-server",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"author": {
"name": "Bouaggad Moez",
"email": "Mrbouaggadmoez@gmail.com"
},
"repository": {
"url": "https://github.com/Datlyfe/type-graphql-server"
},
"scripts": {
"dev": "ts-node-dev --respawn --no-notify src/index.ts",
"start": "npm run dev"
},
"dependencies": {
"apollo-server-express": "^2.8.1",
"bcrypt": "^3.0.6",
"class-validator": "^0.10.0",
"connect-redis": "^3.4.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.16.2",
"graphql": "^14.4.2",
"ioredis": "^4.14.0",
"pg": "^7.12.1",
"reflect-metadata": "^0.1.13",
"ts-node-dev": "^1.0.0-pre.40",
"type-graphql": "^0.17.4",
"typeorm": "^0.2.18"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/connect-redis": "^0.0.10",
"@types/cors": "^2.8.5",
"@types/express": "^4.17.0",
"@types/express-session": "^1.15.13",
"@types/graphql": "^14.2.3",
"@types/ioredis": "^4.0.14",
"@types/node": "^12.7.1",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}