-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.67 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.67 KB
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
{
"name": "group1-final-project",
"version": "1.0.0",
"description": "Build a resume",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install": "cd client && npm install",
"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",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UT-final-project/group1-final-project.git"
},
"author": "Stephen Price, Trevor Smith, Carlos Cantu, Jake Hendershott, Dana Corona",
"license": "MIT",
"bugs": {
"url": "https://github.com/UT-final-project/group1-final-project/issues"
},
"homepage": "https://github.com/UT-final-project/group1-final-project#readme",
"devDependencies": {
"concurrently": "^6.0.0",
"nodemon": "^2.0.7"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"file-saver": "^2.0.5",
"if-env": "^1.0.4",
"mongoose": "^5.12.0",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react-router-dom": "^5.2.0",
"react-to-pdf": "^0.0.13"
}
}