-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.52 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
51
52
53
54
55
56
57
{
"name": "highscoreapi",
"version": "1.0.0",
"description": "HighScore RESTful API for CSE341",
"keywords": [
"REST",
"OAuth",
"mongo"
],
"homepage": "https://github.com/Kaden-Beck/highscoreAPI#readme",
"bugs": {
"url": "https://github.com/Kaden-Beck/highscoreAPI/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kaden-Beck/highscoreAPI.git"
},
"license": "ISC",
"author": "Kaden Beck",
"type": "commonjs",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"swagger": "node ./swagger.js"
},
"dependencies": {
"body-parser": "^2.2.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.1",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-ejs-layouts": "^2.5.1",
"express-messages": "^1.0.1",
"express-session": "^1.18.2",
"express-validator": "^7.2.1",
"http-errors": "^2.0.0",
"mongoose": "^8.17.2",
"passport": "^0.7.0",
"swagger-autogen": "^2.23.7",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@eslint/css": "^0.10.0",
"@eslint/js": "^9.33.0",
"@eslint/json": "^0.13.1",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"nodemon": "^3.1.10",
"prettier": "^3.6.2"
}
}