forked from ooad-sv/semester-project-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "semester-project-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint:nofix": "eslint .",
"lint": "eslint . --fix",
"dev": "nodemon src/index.js",
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ooad-sv/semester-project-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ooad-sv/semester-project-server/issues"
},
"homepage": "https://github.com/ooad-sv/semester-project-server#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-validator": "^6.13.0",
"jsonwebtoken": "^8.5.1",
"node-cron": "^3.0.0",
"nodemailer": "^6.7.1",
"pg": "^8.7.1",
"pg-format": "^1.0.4"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2"
}
}