-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
43
44
{
"name": "cherry-stem",
"version": "0.3.0",
"description": "Collaborative markdown-driven note-taking platform",
"type": "module",
"main": "server.js",
"engines": {
"node": ">=22.5"
},
"scripts": {
"server": "npx nodemon --experimental-sqlite --env-file=env.default server.js",
"lint": "npx eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/wikitopian/cherry-stem.git"
},
"keywords": [
"markdown",
"notes"
],
"author": "wikitopian",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wikitopian/cherry-stem/issues"
},
"homepage": "https://github.com/wikitopian/cherry-stem#readme",
"dependencies": {
"cherry-markdown": "^0.8.40",
"express": "^4.19.2",
"ws": "^8.16.0"
},
"devDependencies": {
"eslint-config-airbnb": "^19.0.4",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.4"
}
}