forked from GSG-G10/eventy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "eventy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node server/index.js",
"dev": "NODE_ENV=development nodemon server/index.js",
"test": " NODE_ENV=test jest --detectOpenHandles --coverage",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G10/eventy.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G10/eventy/issues"
},
"homepage": "https://github.com/GSG-G10/eventy#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.27.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"nodemailer": "^6.7.0",
"pg": "^8.7.1"
},
"devDependencies": {
"autoprefixer": "^10.3.7",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"jest": "^27.3.1",
"nodemon": "^2.0.14",
"supertest": "^6.1.6"
}
}