forked from StephenGrider/Lyrical-GraphQL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.23 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "lyrical",
"version": "1.0.0",
"description": "Starter point for a graphQL course",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/StephenGrider/Lyrical-GraphQL"
},
"scripts": {
"dev": "nodemon index.js --ignore client"
},
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@babel/core": "7.4.3",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-decorators": "7.4.0",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-proposal-function-sent": "7.2.0",
"@babel/plugin-proposal-json-strings": "7.2.0",
"@babel/plugin-proposal-numeric-separator": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.4.3",
"@babel/plugin-proposal-throw-expressions": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-syntax-import-meta": "7.2.0",
"@babel/plugin-transform-modules-commonjs": "7.4.3",
"@babel/plugin-transform-react-jsx": "7.3.0",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"@babel/preset-stage-2": "7.0.0",
"apollo-boost": "^0.4.9",
"apollo-client": "2.6.10",
"axios": "0.19.2",
"babel-core": "6.26.3",
"babel-eslint": "10.0.1",
"babel-jest": "25.1.0",
"babel-loader": "8.1.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"body-parser": "1.19.0",
"connect-mongo": "3.2.0",
"css-loader": "3.5.3",
"express": "4.17.1",
"express-graphql": "0.9.0",
"express-session": "1.17.1",
"graphql": "15.0.0",
"history": "^4.10.1",
"html-webpack-plugin": "4.3.0",
"lodash": "4.17.15",
"mongoose": "5.9.16",
"nodemon": "2.0.4",
"passport": "0.4.1",
"passport-local": "1.0.0",
"react": "16.13.1",
"react-apollo": "3.1.5",
"react-dom": "16.13.1",
"react-router": "^3.0.2",
"redux": "4.0.5",
"style-loader": "1.2.1",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3",
"webpack-filter-warnings-plugin": "1.2.1"
},
"devDependencies": {
"react-hot-loader": "^4.12.21",
"webpack": "^4.29.6",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
}
}