-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.68 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
{
"name": "bears-22",
"version": "0.1.0",
"engines": {
"node": "9.11.1"
},
"private": true,
"dependencies": {
"apollo-cache-inmemory": "^1.2.0",
"apollo-client": "^2.3.0",
"apollo-link-http": "^1.5.4",
"apollo-server-express": "^1.3.6",
"cookie-session": "^2.0.0-beta.3",
"cors": "^2.8.4",
"date-fns": "^1.29.0",
"dotenv": "^5.0.1",
"downshift": "^1.31.14",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-client": "^2.0.1",
"graphql-tag": "^2.9.2",
"graphql-tools": "^3.0.0",
"history": "^4.7.2",
"mongoose": "^5.0.17",
"node-sass-chokidar": "1.2.2",
"npm-run-all": "^4.1.2",
"passport": "^0.4.0",
"passport-github2": "^0.1.11",
"react": "^16.3.2",
"react-apollo": "^2.1.4",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "1.1.4",
"react-transition-group": "^2.3.1",
"redux": "^4.0.0",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"faker": "^4.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.5",
"nodemon": "^1.17.3",
"prettier": "^1.12.1"
},
"scripts": {
"start": "node server/server.js",
"dev": "npm-run-all -p server watch-css start-js",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"server": "nodemon server/server.js",
"start-js": "react-scripts start",
"build-js": "react-scripts build",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"data": "node server/fakeDataGenerator.js",
"format": "prettier --write --single-quote --no-semi --parser=flow --print-width=80 \"src/**/*.{js,jsx}\" \"server/**/*.js\" ",
"precommit": "lint-staged",
"heroku-postbuild": "npm run build"
},
"lint-staged": {
"*.js": [
"npm run format",
"git add"
],
"*.jsx": [
"npm run format",
"git add"
]
},
"description": "",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/chingu-voyage3/bears-22.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chingu-voyage3/bears-22/issues"
},
"homepage": "https://github.com/chingu-voyage3/bears-22#readme",
"proxy": {
"/auth": {
"target": "http://localhost:8080/"
},
"/users": {
"target": "http://localhost:8080/"
},
"/graphql": {
"target": "http://localhost:8080/"
}
}
}