-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
80 lines (80 loc) · 2.04 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "unforget",
"title": "Unforget",
"version": "1.0.0",
"description": "A minimalist, offline-first, and end-to-end encrypted note-taking app (without Electron.js)",
"type": "module",
"scripts": {
"start": "node --enable-source-maps dist/server/index.js",
"clean": "barefront clean",
"build": "barefront build",
"dev": "barefront dev",
"init-server": "barefront init-server",
"clean-server": "barefront clean-server",
"deploy": "barefront deploy"
},
"exports": {
"./*": "./dist/*"
},
"barefront": {
"library": false
},
"author": "Sean Shirazi <[email protected]>",
"keywords": [
"PWA",
"Progressive Web App",
"React",
"SaaS",
"note-taking",
"note",
"todo",
"minimalist",
"minimal",
"simple",
"E2EE",
"privacy",
"offline",
"encrypted"
],
"license": "MIT",
"homepage": "https://unforget.computing-den.com/demo",
"repository": "github:computing-den/unforget",
"engines": {
"node": ">=18.19.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
"@types/body-parser": "^1.19.5",
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.21",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.20",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@types/uuid": "^9.0.8",
"barefront": "^2.2.0",
"esbuild": "^0.20.1",
"typescript": "^5.2.2"
},
"dependencies": {
"better-sqlite3": "^9.4.3",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"hast-util-to-html": "^9.0.1",
"immer": "^10.0.3",
"lodash": "^4.17.21",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-gfm": "^3.0.0",
"mdast-util-newline-to-break": "^2.0.0",
"mdast-util-to-hast": "^13.1.0",
"micromark-extension-gfm": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"unist-util-visit": "^5.0.0",
"unist-util-visit-parents": "^6.0.1",
"unzipit": "^1.4.3",
"uuid": "^9.0.1"
}
}