-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 842 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 842 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": "expressjs-tutorial",
"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"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"mongoose": "^8.0.3",
"passport": "^0.7.0",
"passport-discord": "^0.1.4",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.6",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"supertest": "^6.3.3"
},
"type": "module"
}