-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.47 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "myapp",
"version": "1.0.0",
"description": "My App GraphQL Server",
"scripts": {
"start": "babel-node index.js"
},
"private": true,
"author": "",
"license": "MIT",
"devDependencies": {
"@playlyfe/gql": "^2.6.2",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"chai": "^4.2.0",
"eslint": "7.0.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.20.0",
"mocha": "^7.1.2",
"mongodb-prebuilt": "^6.5.0",
"node-fetch": "^2.6.0",
"nodemon": "2.0.4"
},
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "1.19.0",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"denodeify": "^1.2.1",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-session": "1.17.1",
"graphql": "15.0.0",
"graphql-server": "^0.3.2",
"graphql-server-express": "^1.4.1",
"graphql-subscriptions": "1.1.0",
"graphql-tools": "^5.0.0",
"jwt-simple": "^0.5.6",
"lodash": "4.17.15",
"mongo-find-by-ids": "^1.0.0",
"mongodb": "^3.5.7",
"nodeify": "^1.0.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"subscriptions-transport-ws": "0.9.16"
}
}