-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 916 Bytes
/
package.json
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
{
"name": "TechRolEmiWeather",
"version": "1.0.0",
"description": "A Nodejs Express app integrating weatherbit.io APIs.",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Mark Nguyen",
"license": "ISC",
"dependencies": {
"@aws-sdk/signature-v4-crt": "^3.186.0",
"aws-sdk": "^2.1231.0",
"body-parser": "^1.20.0",
"cookie-session": "^2.0.0",
"crypto-js": "^4.1.1",
"currency-codes": "^2.1.0",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.1",
"mongoose": "^6.7.2",
"passport": "^0.5.2",
"passport-google-oauth20": "^2.0.0",
"request": "^2.88.2"
},
"devDependencies": {
"chromedriver": "^106.0.1",
"nodemon": "^2.0.20",
"selenium-side-runner": "^4.0.0-alpha.16"
}
}