-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.55 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
{
"name": "League_Tracker",
"version": "1.0.0",
"description": "A tracker for sports statistics for recreational sport leagues.",
"main": "server.js",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"concurrently": "^6.2.0",
"connect-mongo": "^4.4.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"if-env": "^1.0.4",
"mongoose": "^5.13.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemon": "^2.0.7",
"react-images-upload": "^1.2.8",
"react-router-dom": "^5.2.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"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 scripts/seedDB.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install npm && npm run build"
},
"engines": {
"node": "14.17.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ktrudickm/League_Tracker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ktrudickm/League_Tracker/issues"
},
"homepage": "https://github.com/ktrudickm/League_Tracker#readme"
}