-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.2 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
{
"name": "breakaway",
"version": "1.0.0",
"description": "An app that increases productivity by helping create a culture and community of taking breaks. Track employee PTO and share employee experiences across the company with this fun and seamless user experience.",
"main": "server.js",
"scripts": {
"test": "npm run lint",
"start": "node server.js",
"lint": "eslint --quiet .",
"fix": "eslint --fix .",
"watch": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MVC-5/breakaway.git"
},
"author": "Josh, Caleb, Jon, Dan, Luke",
"license": "MIT",
"bugs": {
"url": "https://github.com/MVC-5/breakaway/issues"
},
"homepage": "https://github.com/MVC-5/breakaway#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cloudinary": "^1.23.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.1.0",
"moment": "^2.29.0",
"moment-range": "^4.0.2",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"nodemailer": "^6.4.11",
"sequelize": "^6.3.5"
},
"devDependencies": {
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0"
}
}