-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "hushnote",
"private": true,
"version": "4.1.2",
"description": "a privnote-like service with a REST API for sending one-time-use messages via unique URLs",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"test": "mocha -r dotenv/config",
"browserify:crypto": "./node_modules/browserify/bin/cmd.js -s hush -e src/lib/crypto.js -o src/public/crypto.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshterrill/hushnote.git"
},
"keywords": [
"crypto",
"encryption",
"rest",
"one-time-use"
],
"author": "Josh Terrill",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshterrill/hushnote/issues"
},
"homepage": "https://github.com/joshterrill/hushnote#readme",
"dependencies": {
"dotenv": "^8.6.0",
"express": "^4.18.1",
"express-handlebars": "^6.0.6",
"mongodb": "^3.7.3",
"node-schedule": "^2.1.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"nodemon": "^2.0.18"
}
}