-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 894 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 894 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
35
36
37
{
"name": "lesson01",
"version": "1.0.0",
"description": "",
"main": "index.mjs",
"scripts": {
"test": "jest",
"test:e2e": "jest --testPathPattern=src/e2e",
"start:dev": "nodemon ./src/index.mjs",
"start": "node ./src/index.mjs"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-session": "^1.18.0",
"express-validator": "^7.0.1",
"mongoose": "^8.2.1",
"passport": "^0.7.0",
"passport-discord": "^0.1.4",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/node": "^7.23.9",
"@babel/preset-env": "^7.24.0",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.4"
},
"type": "module"
}