-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1018 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
{
"name": "url-shortener-line",
"version": "1.0.0",
"description": "Line bot for url shortener",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts --exec npm run dev:start",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "https://github.com/turfaa/url-shortener-line",
"author": "Turfa Auliarachman",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/express": "^4.16.1",
"@types/node": "^11.11.3",
"nodemon": "^1.18.10",
"npm-run-all": "^4.1.5",
"tslint": "^5.14.0",
"typescript": "^3.3.3333"
},
"dependencies": {
"@line/bot-sdk": "^6.6.0",
"@types/is-url": "^1.2.28",
"axios": "^0.21.1",
"express": "^4.16.4",
"is-url": "^1.2.4",
"rimraf": "^2.6.3"
}
}