-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.2 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "cse341-web-services",
"version": "1.4.0",
"date": "2025-01-30",
"create-date": "2025-01-09",
"description": "CSE 341 Web Services Winter 2025",
"keywords": [],
"author": "vern wolfley",
"repository": {
"type": "git",
"url": "https://github.com/vwolfley/cse341-web-services"
},
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "open http://localhost:8080 && nodemon app.js",
"swagger": "node ./swagger.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"body-parser": "^1.20.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"mongodb": "^6.12.0",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"globals": "^15.14.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"swagger-autogen": "^2.23.7"
},
"prettier": {
"plugins": []
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"prettier"
],
"parserOptions": {
"ecmaVersion": "latest"
},
"env": {
"browser": true,
"node": true,
"es6": true
}
},
"license": "MIT"
}