forked from Nayra000/passwordManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 KB
/
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
36
37
38
39
40
41
42
43
44
45
{
"name": "passwordmanager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "nodemon index.js",
"dev": "node index.js",
"test": "jest --passWithNoTests",
"style": "npx tailwindcss -i ./views/input.css -o ./views/output.css --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.6",
"autoprefixer": "^10.4.16",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5"
},
"dependencies": {
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"cookies-parser": "^1.2.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.3",
"nodemailer": "^6.9.7",
"prettier": "^3.2.5",
"pug": "^3.0.2",
"validator": "^13.11.0"
}
}