-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
131 lines (131 loc) · 4.2 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "kiwi-wiki",
"version": "0.10.1",
"description": "a flat file personal wiki.",
"main": "build/boot/main.js",
"engines": {
"node": ">=14.14.0"
},
"files": [
"build/**/*"
],
"bin": {
"kiwi": "build/boot/main.js"
},
"scripts": {
"start": "node --experimental-vm-modules build/boot/main.js serve ../wiki",
"dev": "concurrently 'npm:watch:ui' 'npm:watch:core'",
"build": "shx rm -rf build && concurrently 'npm:build:core' 'npm:build:ui'",
"build:core": "tsc && shx cp -r src/kiwi build/",
"build:ui": "webpack --mode=development",
"build:ui_prod": "webpack --mode=production",
"build:doc": "typedoc src --out build/doc --exclude src/ui/**/*",
"watch:ui": "webpack --mode=development --watch",
"watch:core": "tsc-watch --noClear --onFirstSuccess \"shx cp -r src/kiwi build/\" --onSuccess \"node --experimental-vm-modules build/boot/main.js serve -p 31000 /home/sine/code/ssine/wiki-data --log-path ./data/logs/kiwi-full.log\"",
"analyze": "webpack-bundle-analyzer --port 8080 build/browser/stats.json",
"prepublishOnly": "shx rm -rf build && concurrently 'npm:build:core' 'npm:build:ui_prod'",
"publish_": "npm --registry https://registry.npmjs.org/ publish",
"login_": "npm --registry https://registry.npmjs.org/ login",
"lint": "gts lint",
"clean": "gts clean",
"fix": "gts fix",
"format": "npx prettier --write ."
},
"author": "Sine Liu",
"license": "ISC",
"overrides": {
"@types/react": "^18.0.0"
},
"devDependencies": {
"@kooneko/livereload-webpack-plugin": "^1.2.0",
"@loadable/component": "^5.15.2",
"@reduxjs/toolkit": "^1.7.1",
"@types/animejs": "^3.1.5",
"@types/body-parser": "^1.17.1",
"@types/cheerio": "^0.22.15",
"@types/clone": "^2.1.1",
"@types/command-line-args": "^5.0.0",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cssesc": "^3.0.0",
"@types/escape-html": "^1.0.1",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.1.3",
"@types/he": "^1.1.0",
"@types/iframe-resizer": "^3.5.9",
"@types/js-yaml": "^3.12.1",
"@types/jsdom": "^16.1.0",
"@types/loadable__component": "^5.13.4",
"@types/lodash": "^4.14.182",
"@types/marked": "^4.0.3",
"@types/node": "^16.11.31",
"@types/react-dom": "^17.0.2",
"@types/react-resizable": "^3.0.2",
"@types/semver": "^7.3.10",
"@types/uuid": "^8.3.4",
"@types/yargs": "^15.0.1",
"compression-webpack-plugin": "^7.1.1",
"concurrently": "^6.5.1",
"css-loader": "^3.4.2",
"file-loader": "^5.0.2",
"gts": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"iframe-resizer": "^4.3.2",
"mj-context-menu": "^0.2.2",
"monaco-editor": "^0.34.0",
"monaco-editor-webpack-plugin": "^7.0.1",
"painterro": "^1.2.78",
"prettier": "^2.6.2",
"react-redux": "^7.2.6",
"react-reparenting": "^0.6.1",
"react-resizable": "^3.0.4",
"shx": "^0.3.3",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.2",
"ts-loader": "^9.2.8",
"tsc-watch": "^4.2.9",
"tslib": "^1.10.0",
"typedoc": "^0.21.2",
"uuid": "^9.0.0",
"webpack": "^5.11.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.3.0"
},
"dependencies": {
"acorn": "^8.7.1",
"acorn-walk": "^8.2.0",
"animejs": "^3.2.1",
"asciidoctor": "^2.2.1",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.10",
"chokidar": "^3.3.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cssesc": "^3.0.0",
"escape-html": "^1.0.3",
"express": "^5.0.0-beta.1",
"express-fileupload": "^1.3.1",
"express-winston": "^4.2.0",
"he": "^1.2.0",
"highlight.js": "^10.4.1",
"isbinaryfile": "^4.0.4",
"js-yaml": "^3.13.1",
"jsdom": "^19.0.0",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"mathjax-full": "^3.0.1",
"mobx": "^6.6.2",
"moment": "^2.24.0",
"parse-css-color": "^0.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"semver": "^7.3.7",
"tosource": "^2.0.0-alpha.2",
"typescript": "^4.3.5",
"viz.js": "^2.1.2",
"winston": "^3.2.1",
"wtf_wikipedia": "^10.0.2",
"wtf-plugin-html": "^1.0.0",
"yargs": "^16.2.0"
}
}