-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 922 Bytes
/
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
{
"name": "graphql-express",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon -r ts-node/register src/app.ts",
"build": "tsc -p ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.7.0-alpha.3",
"bcrypt": "^3.0.6",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-graphql": "^0.8.0",
"graphql": "^14.4.1",
"graphql-import": "^0.7.1",
"graphql-tools": "^4.0.5",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.6.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.0",
"@types/express-graphql": "^0.8.0",
"@types/graphql": "^14.2.2",
"@types/jsonwebtoken": "^8.3.2",
"@types/mongoose": "^5.5.6",
"@types/node": "^12.0.10",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
}
}