-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·55 lines (55 loc) · 1.57 KB
/
package.json
File metadata and controls
executable file
·55 lines (55 loc) · 1.57 KB
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
{
"name": "remarkablewiki",
"version": "0.0.15",
"description": "Remarkable Wiki provides user-friendly interface for reading and navigating in markdown documents",
"main": "dist/server.js",
"keywords": [
"markdown",
"foam",
"wiki"
],
"engines": {
"node": "14.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrjazz/remarkable.git"
},
"author": "Denis Sheremetov",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrjazz/remarkable/issues"
},
"homepage": "https://github.com/mrjazz/remarkable/README.md",
"scripts": {
"dev": "nodemon --exec ts-node ./src/server.ts --watch src --ext .ts -p ../wiki",
"build": "tsc",
"prebuild": "rimraf ./dist && mkdir dist",
"start": "node ./dist/server.js -p ../wiki",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"dependencies": {
"commander": "^6.2.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"etag": "^1.8.1",
"express": "^4.17.1",
"markdown-it": "^12.0.4"
},
"devDependencies": {
"@types/assert": "^1.5.4",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.25",
"assert": "^2.0.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"bin": {
"remarkablewiki": "./dist/server.js"
}
}