-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 930 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": "password-manager",
"version": "1.0.0",
"description": "A simple web-app for storing passwords",
"main": "app.js",
"scripts": {
"start": "node app.js PROD",
"dev": "nodemon app.js DEV"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrdcvlsc/password-manager.git"
},
"author": "mrdcvlsc",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrdcvlsc/password-manager/issues"
},
"homepage": "https://github.com/mrdcvlsc/password-manager#readme",
"dependencies": {
"@fastify/cookie": "^11.0.1",
"@fastify/formbody": "^8.0.1",
"@fastify/helmet": "^12.0.1",
"@fastify/session": "^11.0.1",
"@fastify/static": "^8.0.2",
"bcrypt": "^5.1.1",
"better-sqlite3": "^11.5.0",
"dotenv": "^16.4.5",
"fastify": "^5.1.0",
"fastify-session-better-sqlite3-store": "^2.1.1"
},
"devDependencies": {
"nodemon": "^3.1.7"
}
}