-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
executable file
·46 lines (46 loc) · 1.34 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
{
"name": "paint-r-us",
"version": "1.0.0",
"description": "Website for a body shop",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "if-env NODE_ENV=production && npm run prod || npm run dev",
"prod": "node server.js",
"consoleApp": "cd consoleApp && node consoleApp.js",
"me": "(node server.js) & cd consoleApp && node consoleApp.js",
"dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "npm install && cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dagreatcode/Paint-R-Us.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dagreatcode/Paint-R-Us/issues"
},
"homepage": "https://github.com/dagreatcode/Paint-R-Us#readme",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"if-env": "^1.0.4",
"inquirer": "^9.1.4",
"mongoose": "^6.8.0",
"nodemailer": "^6.9.3",
"path": "^0.12.7"
},
"devDependencies": {
"chai": "^4.3.7",
"concurrently": "^7.6.0",
"mocha": "^10.2.0",
"newman": "^5.3.2",
"nodemon": "^2.0.20"
}
}