-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "git-cleanup",
"version": "0.1.0",
"private": true,
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"concurrently": "^5.1.0",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"favicon-switcher": "^1.2.2",
"fuse.js": "^5.1.0",
"heroku-ssl-redirect": "0.0.4",
"http-proxy-middleware": "^1.0.3",
"morgan": "^1.10.0",
"node-sass": "^4.13.1",
"nodemon": "^2.0.2",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-icons": "^3.9.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.0.1",
"react-spinners": "^0.8.1",
"styled-components": "^5.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"server": "nodemon server.js",
"dev": "concurrently \"npm start\" \"npm run server\" "
},
"proxy": "http://localhost:5000",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}