-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 952 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 952 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
38
{
"name": "familyexpenses",
"version": "1.0.0",
"description": "A familyexpenses server for human",
"main": "index.js",
"scripts": {
"dev": "nodemon index.ts",
"build": "tsc",
"start": "node build/index.js",
"postinstall": "tsc"
},
"author": "kamilkodzi",
"license": "ISC",
"dependencies": {
"@types/express-session": "^1.17.4",
"@types/mongodb": "^4.0.7",
"@types/mongoose": "^5.11.97",
"@types/passport": "^1.0.9",
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"helmet": "^5.1.0",
"joi": "^17.6.0",
"mongoose": "^6.4.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^7.1.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.0.0",
"nodemon": "^2.0.18",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}