-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "goldie-mohr",
"version": "1.0.0",
"description": "Project 3 in bootcamp",
"main": "server.js",
"directories": {
"doc": "docs"
},
"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",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoldieMohrProject/goldie-mohr.git"
},
"author": "Faisal Nour,Fatih Ay,Mischa Dabrowski,Said Mghabghab,Shiva Sabokdast",
"license": "MIT",
"bugs": {
"url": "https://github.com/GoldieMohrProject/goldie-mohr/issues"
},
"devDependencies": {
"concurrently": "^6.0.0",
"nodemon": "^2.0.7"
},
"homepage": "https://github.com/GoldieMohrProject/goldie-mohr",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^8.2.0",
"eslint": "^7.23.0",
"express": "^4.17.1",
"if-env": "^1.0.4",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"uuid": "^8.3.2"
}
}