-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.04 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.04 KB
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
{
"name": "react-graphql-full-stack",
"version": "1.0.0",
"description": "React GraphQL Express MongoDB Full Stack",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node server/server.js",
"dev": "nodemon server/server.js",
"build": "webpack --env.prod",
"build:dev": "webpack -w --env.dev",
"flow": "flow check"
},
"author": "@keemor",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"apollo-boost": "^0.1.28",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"bootstrap": "^4.3.1",
"core-js": "^2.6.9",
"css-loader": "^6.10.0",
"eslint": "^5.16.0",
"faker": "^4.1.0",
"formik": "^1.5.8",
"jest": "^29.4.1",
"jest-cli": "^29.4.1",
"js-cookie": "^2.2.0",
"mini-css-extract-plugin": "^0.5.0",
"nodemon": "^2.0.20",
"puppeteer": "^1.19.0",
"react": "^16.8.6",
"react-apollo": "^2.5.8",
"react-apollo-hooks": "^0.4.5",
"react-dom": "^16.8.6",
"react-icons": "^3.7.0",
"react-loader-spinner": "^2.3.0",
"react-router-dom": "^4.3.1",
"reactstrap": "^7.1.0",
"reactstrap-formik": "^1.0.9",
"webpack": "^4.39.1",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^3.3.6",
"webpack-config-utils": "^2.3.1",
"webpack-livereload-plugin": "^2.2.0",
"yup": "^1.0.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"compression": "^1.7.4",
"dataloader": "^1.4.0",
"express": "^4.17.3",
"express-graphql": "^0.7.1",
"express-sslify": "^1.2.0",
"graphql": "^14.4.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.13.20"
},
"browserslist": [
"last 1 version"
],
"heroku-run-build-script": true
}