forked from jimmytutron/career-deer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.67 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
{
"name": "career-deer",
"version": "1.0.0",
"description": "Job Task Tracker - Backend",
"main": "./backend/server",
"scripts": {
"start": "cross-env NODE_ENV=production yarn start:prod || yarn start:dev",
"start:prod": "node ./backend/server",
"start:dev": "concurrently \"yarn nodemon --trace-deprecation --ignore 'client/*'\" \"yarn client\"",
"client": "cd client && yarn start",
"install": "cd client && yarn install",
"build": "cd client && yarn build",
"heroku-postbuild": "yarn build"
},
"author": "Nicholas Fleischhauer <[email protected]>",
"createdBy": "The loving Career Deer team: Robert, Eric, Jimmy, and Nicholas",
"maintainedBy": [
"Nicholas Fleischhauer <[email protected]>"
],
"license": "ISC",
"devDependencies": {
"concurrently": "^3.5.0",
"cross-env": "^7.0.3",
"nodemon": "^1.11.0"
},
"dependencies": {
"axios": "^1.7.7",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"cheerio": "^1.0.0-rc.2",
"connect-mongo": "^5.1.0",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"if-env": "^1.0.4",
"ini": "^4.1.3",
"moment": "^2.22.2",
"mongodb": "^6.0.0",
"mongoose": "^5.2.0",
"morgan": "^1.9.0",
"morgan-body": "^2.4.0",
"node-schedule": "^1.3.0",
"nodemailer": "^6.9.14",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1",
"prop-types": "^15.8.1",
"random-hash": "^4.0.1",
"react-bootstrap": "^2.10.5",
"react-scroll": "^1.9.0"
}
}