-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.42 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
{
"name": "lexicalegend",
"version": "1.0.0",
"description": "A Line chatbot for searching and recommending vocabularies.",
"main": "./dist/index.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && tsc",
"start": "node dist/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' index.ts",
"scrap": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/get-def.ts",
"build-lib": "node src/process-text.js"
},
"author": "Alice Lee <[email protected]> (https://itsalicelee.github.io)",
"dependencies": {
"@line/bot-sdk": "^7.3.0",
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.12",
"emoji-regex": "^10.1.0",
"express": "^4.17.1",
"htmlparser2": "^8.0.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.31",
"@types/express": "^4.17.9",
"@types/node": "^14.14.14",
"nodemon": "^2.0.19",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itsalicelee/Lexicalegend.git"
},
"keywords": [
"linebot"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/itsalicelee/Lexicalegend/issues"
},
"homepage": "https://github.com/itsalicelee/Lexicalegend#readme"
}