-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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
{
"name": "epoche",
"version": "0.2.0",
"description": "A modern, small wiki engine without complexity",
"keywords": [
"wiki",
"engine",
"markdown",
"sqlite3",
"cms"
],
"homepage": "https://github.com/nolze/epoche",
"repository": "https://github.com/nolze/epoche",
"license": "MIT",
"author": "nolze <nolze@archlinux.us>",
"main": "epoche.js",
"bin": {
"epoche": "epoche.js"
},
"files": [
"server/src/**/*.js",
"view/public/",
"epoche.js",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "eslint ./epoche.js ./server/",
"prepack": "npm run --prefix ./view build",
"start:server": "node ./epoche.js start",
"start:view": "npm run --prefix ./view dev"
},
"dependencies": {
"commander": "^6.2.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"knex": "^0.95.5",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"promptly": "^3.2.0",
"rehype-mathjax": "^3.1.0",
"rehype-slug": "^4.0.1",
"rehype-stringify": "^8.0.0",
"rehype-urls": "^1.1.1",
"remark-frontmatter": "^3.0.0",
"remark-gfm": "^1.0.0",
"remark-math": "^4.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.1.0",
"sqlite3": "npm:@vscode/sqlite3@^5.0.2",
"unified": "^9.2.1"
},
"devDependencies": {
"eslint": "^7.26.0"
}
}