-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 904 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 904 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
35
36
37
{
"name": "node-express-gql-server",
"version": "0.0.1",
"main": "app.js",
"engines": {
"node": ">=12.x"
},
"private": true,
"author": "Arsalan Bilal <mabc224@gmail.com>",
"scripts": {
"start": "node ./index",
"dev": "nodemon ./app --exec babel-node"
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"apollo-errors": "1.9.0",
"apollo-server-express": "2.8.2",
"chance": "^1.0.18",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "4.16.1",
"graphql": "14.5.0",
"graphql-resolvers": "^0.3.3",
"graphql-tools": "^4.0.5",
"jsonwebtoken": "^8.5.1",
"lodash": "4.17.15"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "5.3.0",
"eslint-config-airbnb-base": "13.0.0",
"eslint-plugin-import": "2.12.0",
"nodemon": "^1.19.1"
}
}