-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 818 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 818 Bytes
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
{
"name": "jwtauth1",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "ts-node-dev --respawn src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.4.8",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.4",
"express": "^4.16.4",
"graphql": "^14.2.1",
"jsonwebtoken": "^8.5.1",
"pg": "^7.10.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.17"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.16.1",
"@types/graphql": "^14.2.0",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^12.0.0",
"ts-node": "^8.1.0",
"ts-node-dev": "^1.0.0-pre.35",
"typescript": "^3.4.5"
}
}