-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "notes-server",
"version": "3.0.0",
"description": "A node.js server for notes.",
"repository": "https://github.com/raravi/notes-server.git",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"test": "nyc --reporter=lcov --reporter=text mocha"
},
"author": "Amith Raravi <amith.raravi@gmail.com>",
"homepage": "https://www.amithraravi.com/",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.7",
"codecov": "^3.8.3",
"dotenv": "^10.0.0",
"jwt-decode": "^3.1.2",
"mocha": "^9.2.2",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"sinon": "^12.0.1",
"supertest": "^6.3.3"
},
"dependencies": {
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^5.5.1",
"express-session": "^1.17.3",
"helmet": "^4.6.0",
"is-empty": "^1.2.0",
"mongoose": "5.13.8",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"path": "^0.12.7",
"validator": "^13.7.0"
}
}