-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "cse341-node",
"version": "1.0.0",
"description": "BYUI Course project",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"start:dev": "nodemon server.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"swagger": "node ./swagger.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wmezadev/cse341-node.git"
},
"keywords": [
"node",
"javascript"
],
"author": "@wmezadev",
"license": "ISC",
"bugs": {
"url": "https://github.com/wmezadev/cse341-node/issues"
},
"homepage": "https://github.com/wmezadev/cse341-node#readme",
"dependencies": {
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongodb": "^4.11.0",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"swagger-autogen": "^2.22.0"
}
}