-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 729 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 729 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
{
"name": "Amiure",
"version": "1.0.0",
"description": "This project is for testing of my skills.",
"main": "server.ts",
"author": "vivek80801",
"license": "MIT",
"scripts": {
"dev": "nodemon ./server.ts"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"mongoose": "^6.0.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/passport": "^1.0.7",
"@types/passport-local": "^1.0.34",
"nodemon": "^2.0.12",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}