-
Notifications
You must be signed in to change notification settings - Fork 703
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 822 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 822 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
34
{
"name": "auth-api",
"version": "1.0.0",
"description": "Authentication & Authorization API - GitHub Classroom Lab",
"type": "module",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
"test:win": "set NODE_OPTIONS=--experimental-vm-modules&& jest --runInBand"
},
"keywords": [
"authentication",
"authorization",
"jwt",
"bcrypt",
"express",
"mongodb"
],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.19.2",
"mongoose": "^8.8.0",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^7.0.0",
"mongodb-memory-server": "^10.1.0"
}
}