-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.22 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
47
48
49
50
{
"name": "crud-snippets-by-delfi",
"version": "1.0.0",
"description": "Web application for managing code snippets.",
"main": "src/server.js",
"type": "module",
"scripts": {
"start": "node src/server.js",
"start:dev": "nodemon src/server.js",
"lint": "npx eslint ./src || exit 0",
"lint:fix": "npx eslint ./src --fix || exit 0"
},
"repository": {
"type": "git",
"url": "git@gitlab.lnu.se:1dv023/student/ds222qe/assignment-2-crud-snippets.git"
},
"keywords": [
"express",
"mongodb",
"auth"
],
"author": "Delfi Šehidić",
"license": "UNLICENSED",
"dependencies": {
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-flash-messages": "^0.1.1",
"express-session": "^1.17.1",
"helmet": "^4.4.1",
"mongoose": "^5.11.16"
},
"devDependencies": {
"@lnu/eslint-config": "^1.1.2",
"dotenv": "^8.2.0",
"eslint": "^7.19.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^31.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"nodemon": "^2.0.7"
},
"eslintConfig": {
"extends": "@lnu"
},
"nodemonConfig": {
"ext": "js,json,hbs,html,css"
}
}