-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "backend",
"version": "1.0.0",
"description": "Test backend",
"main": "src/app.js",
"type": "module",
"scripts": {
"dev": "nodemon src/app.js",
"start": "node src/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standard",
"lint:fix": "standard --fix"
},
"author": "Gianluca Chiaravalloti",
"license": "ISC",
"dependencies": {
"@slack/webhook": "7.0.5",
"bcryptjs": "3.0.2",
"cors": "2.8.5",
"dotenv": "17.0.1",
"express": "4.21.2",
"express-list-endpoints": "7.1.1",
"express-validator": "7.2.1",
"jsonwebtoken": "9.0.2",
"mongoose": "8.16.1",
"mongoose-delete": "1.0.2",
"morgan-body": "2.6.9",
"multer": "2.0.1"
},
"devDependencies": {
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.6.0",
"nodemon": "3.1.10",
"standard": "17.1.2"
},
"eslintConfig": {
"extends": "standard"
}
}