-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·86 lines (86 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·86 lines (86 loc) · 2.64 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "bears-team-30",
"version": "1.0.0",
"description": "Add-project-description-here | Voyage-7 | https://chingu.io/",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client": "webpack-dev-server --config ./client/webpack.dev.js",
"build": "webpack --config ./client/webpack.prod.js",
"apollo": "nodemon ./apollo-server/index.js",
"start": "node ./apollo-server/index.js",
"dev": "concurrently \"npm run apollo\" \"npm run client\"",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chingu-voyage7/Bears-Team-30.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chingu-voyage7/Bears-Team-30/issues"
},
"homepage": "https://github.com/chingu-voyage7/Bears-Team-30#readme",
"dependencies": {
"acorn": "^6.0.4",
"apollo-boost": "^0.1.22",
"apollo-cache-inmemory": "^1.3.12",
"apollo-client": "^2.4.8",
"apollo-link": "^1.2.6",
"apollo-link-error": "^1.1.5",
"apollo-link-http": "^1.5.9",
"apollo-server": "^2.3.1",
"apollo-server-cache-redis": "^0.2.1",
"apollo-server-express": "^2.3.1",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"graphql": "^14.0.2",
"graphql-type-uuid": "^0.2.0",
"http-errors": "~1.6.2",
"jsonwebtoken": "^8.4.0",
"morgan": "~1.9.0",
"nodemon": "^1.18.9",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.7.1",
"react": "^16.6.3",
"react-apollo": "^2.3.3",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.6.3",
"react-router-dom": "^4.3.1",
"redis": "^2.8.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"concurrently": "^4.1.0",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^1.0.1",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.11.0",
"prettier": "^1.15.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4"
}
}