-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.79 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
{
"name": "graphql-sandbox",
"version": "0.1.0",
"description": "GraphQL Sandbox",
"main": "index.js",
"scripts": {
"start": "nodemon ./Backend/server.js & webpack-dev-server --inline --hot --open 'Google Chrome'",
"production": "webpack --mode production && nodemon ./Backend/server.js",
"server": "nodemon ./Backend/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Joshua-Howard/graphql-sandbox.git"
},
"keywords": [
"React",
"Node",
"Express",
"GraphQL"
],
"author": "Joshua Howard",
"license": "MIT",
"bugs": {
"url": "https://github.com/Joshua-Howard/graphql-sandbox/issues"
},
"homepage": "https://github.com/Joshua-Howard/graphql-sandbox#readme",
"dependencies": {
"bootstrap": "^4.4.1",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.5.8",
"pg": "^7.17.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"node-sass": "^4.13.1",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"redux-devtools-extension": "^2.13.8",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}