-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.96 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "nergm",
"version": "1.0.0",
"description": "basic intro to node express react graphql and mongodb",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=production node index.js",
"dev-start": "nodemon index.js",
"build": "webpack --mode production",
"dev-build": "webpack --mode development -w"
},
"engines": {
"node": "^12.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmilK15/NERGM.git"
},
"author": "Emil Kais",
"license": "ISC",
"bugs": {
"url": "https://github.com/EmilK15/NERGM/issues"
},
"homepage": "https://github.com/EmilK15/NERGM#readme",
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"apollo-boost": "^0.4.4",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-server": "^2.9.6",
"apollo-server-express": "^2.9.6",
"apollo-upload-client": "^11.0.0",
"app-root-path": "^2.2.1",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-mongo": "^3.0.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dataloader": "^1.4.0",
"express": "^4.17.1",
"express-graphql": "^0.8.0",
"express-session": "^1.16.2",
"formik": "^1.5.8",
"graphql": "^14.4.2",
"graphql-depth-limit": "^1.1.0",
"graphql-request": "^1.8.2",
"graphql-resolvers": "^0.3.3",
"helmet": "^3.21.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.3.3",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"react": "^16.8.6",
"react-apollo": "^3.1.3",
"react-bootstrap": "^1.0.0-beta.14",
"react-dom": "^16.8.6",
"react-redux": "^7.1.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"winston": "^3.2.1",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"eslint-plugin-security": "^1.4.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mocha": "^6.1.4",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
}
}