-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
37 lines (37 loc) · 987 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
36
37
{
"name": "mininote",
"version": "1.0.4",
"description": "A simple Mardown note-taking editor",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "NODE_ENV=dev node index.js",
"test": "TEST=true mocha --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muety/mininote.git"
},
"author": "Ferdinand Mütsch <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/muety/mininote/issues"
},
"homepage": "https://github.com/muety/mininote#readme",
"dependencies": {
"basic-auth": "^2.0.1",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"express": "^4.21.2",
"lokijs": "^1.5.12"
},
"devDependencies": {
"chai": "^4.5.0",
"mocha": "11.0.1",
"supertest": "^3.4.2"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "[email protected]"
}