-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 985 Bytes
/
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
{
"name": "markov_cn_serve",
"version": "1.1.2",
"description": "server app to build random word sentences using one's conversation history",
"main": "index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src/*",
"start": "tsc && node out/startserver.js",
"dict": "node scripts/rebuilddict.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cleoold/Markov_CN_node"
},
"keywords": [
"markov",
"chinese",
"random"
],
"author": "cos",
"license": "MIT",
"devDependencies": {
"@types/async-lock": "^1.1.1",
"@types/koa": "^2.11.2",
"@types/koa-router": "^7.4.0",
"@types/node": "^13.9.0",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"typescript": "^3.8.3"
},
"dependencies": {
"async-lock": "^1.2.2",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-router": "^8.0.8",
"nodejieba": "^2.4.0"
}
}