forked from chrischenlixing/CS5610-WebDev-EmoNotes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 850 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 850 Bytes
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
{
"name": "mynote",
"version": "1.0.0",
"type": "module",
"description": "This is a website application for you to share your moments.",
"main": "index.js",
"scripts": {
"start": "node ./node_modules/nodemon/bin/nodemon.js ./bin/Server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Junyi Liu and Lixing Chen",
"license": "MIT",
"dependencies": {
"bootstrap": "^5.3.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mongodb": "^4.17.1",
"morgan": "^1.10.0",
"nodemon": "^3.0.1"
},
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1"
},
"engines": {
"node": ">=20.0.0 <21.0.0"
}
}