-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "lunchcrew",
"version": "1.0.0",
"description": "You don't know what to eat today?",
"main": "index.js",
"scripts": {
"postinstall": "tsc",
"start": "node -r dotenv/config dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"eslint": "eslint src --ext ts",
"dev": "tsc --watch & DEBUG=lunchcrew* nodemon -r dotenv/config dist"
},
"keywords": [
"line",
"chatbot",
"lunchcrew",
"lunch",
"crew"
],
"author": "YuLun Shih",
"license": "MIT",
"dependencies": {
"@line/bot-sdk": "^6.7.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"node-emoji": "^1.8.1",
"random-item": "^1.0.0"
},
"devDependencies": {
"@types/debug": "0.0.30",
"@types/express": "^4.16.1",
"@types/node-emoji": "^1.8.1",
"debug": "^3.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"nodemon": "^1.17.5",
"typescript": "^2.9.1",
"typescript-eslint-parser": "^16.0.0"
}
}