-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"type": "module",
"name": "assignment-2",
"version": "1.0.0",
"description": "assignment 2 in 1dv023",
"main": "src/server.js",
"scripts": {
"start": "node ./src/server.js",
"lint": "npx eslint . || exit 0",
"lint:fix": "npx eslint . --fix || exit 0",
"devstart": "nodemon --inspect app.js"
},
"repository": {
"type": "git",
"url": "[email protected]:1dv023/student/oa222ct/assignment-2.git"
},
"dependencies": {
"bcrypt": "^5.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-hbs": "^2.3.0",
"express-session": "^1.17.0",
"moment": "^2.24.0",
"mongoose": "^5.9.1"
},
"author": "Omar Alhamad",
"license": "ISC",
"devDependencies": {
"@lnu/eslint-config": "^1.0.6",
"@types/mongoose": "^5.11.97",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsdoc": "^21.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"morgan": "^1.9.1",
"nodemon": "^3.0.3"
},
"eslintConfig": {
"extends": "@lnu"
}
}