-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.61 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
{
"name": "fantasy_website",
"version": "1.0.0",
"private": true,
"description": "Reddit /r/fantasy stabby voting site.",
"scripts": {
"start-server": "cross-env NODE_ENV=development nodemon server/server.js --watch 'server/*'",
"start-front": "react-scripts start",
"start": "concurrently \"yarn run start-server\" \"yarn run start-front\" --kill-others",
"start-prod": "node server/server.js",
"migrate": "knex --knexfile=./server/knexfile.js migrate:latest",
"rollback": "knex --knexfile=./server/knexfile.js migrate:rollback",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "npx env-cmd -f .env.test jest --config=jest-config.js"
},
"proxy": "http://localhost:5000",
"author": "Matthew Strider Jones (stridera)",
"license": "MIT",
"dependencies": {
"@hookform/resolvers": "^2.8.5",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@reduxjs/toolkit": "^1.7.1",
"axios": "^0.24.0",
"camaro": "^6.1.0",
"connect-session-knex": "^2.1.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-session": "^1.17.2",
"http-proxy-middleware": "^2.0.1",
"knex": "^0.95.14",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"objection": "^3.0.0",
"objection-db-errors": "^1.1.2",
"passport": "^0.5.2",
"passport-reddit": "^0.2.4",
"pg": "^8.7.1",
"react": "^17.0.2",
"react-date-picker": "^8.3.6",
"react-dom": "^17.0.2",
"react-hook-form": "^7.22.2",
"react-moment": "^1.1.1",
"react-redux": "^7.2.6",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"react-scripts": "^5.0.0",
"redux": "^4.1.2",
"slugify": "^1.6.4",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5",
"yup": "^0.32.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.3",
"axios-mock-adapter": "^1.20.0",
"concurrently": "^6.5.1",
"cross-env": "^7.0.3",
"moxios": "^0.4.0",
"nodemon": "^2.0.15",
"supertest": "^6.1.6"
},
"engines": {
"node": ">=16.13.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devServer": {
"compress": true,
"public": "rfantasy.com"
}
}