-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
69 lines (69 loc) · 2.02 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
{
"name": "sportsbook-4",
"version": "0.1.0",
"private": true,
"engines": {
"node": "16.13.2",
"npm": "9.2.0"
},
"description": "sportsbook app",
"main": "server.js",
"proxy": "http://localhost:3001",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"seed": "node seeders/manualSeed.js",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"author": "Keenan Heller",
"license": "ISC",
"homepage": "https://sbook-kman.herokuapp.com/",
"devDependencies": {
"concurrently": "^7.6.0",
"nodemon": "^2.0.20"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"apexcharts": "^3.36.3",
"axios": "^0.21.0",
"babel-plugin-macros": "^3.1.0",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"dotenv": "^8.6.0",
"express": "^4.16.3",
"express-session": "^1.17.1",
"http": "0.0.1-security",
"https": "^1.0.0",
"if-env": "^1.0.4",
"install": "^0.13.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.32",
"mongoose": "^5.10.17",
"morgan": "^1.10.0",
"node": "16.13.2",
"node-cron": "^3.0.0",
"node-fetch": "^3.3.0",
"npm": "^9.2.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-apexcharts": "^1.4.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"socket.io": "^4.5.4",
"socket.io-client": "^3.1.3",
"web-vitals": "^1.1.2"
}
}