-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.3 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
{
"name": "announcer",
"version": "1.0.0",
"description": "Announcer can announce Flex Message with LINE",
"main": "index.ts",
"scripts": {
"start": "cross-env NODE_ENV=production node ./dist/index.js",
"dev": "export NODE_ENV=develop && nodemon index.ts",
"build": "tsc",
"heroku-postbuild": "npm run build",
"test": "jest --coverage",
"test:local": "export NODE_ENV=develop && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/louis70109/Announcer.git"
},
"keywords": [
"liff",
"LINE"
],
"author": "NiJia",
"license": "MIT",
"bugs": {
"url": "https://github.com/louis70109/Announcer/issues"
},
"homepage": "https://github.com/louis70109/Announcer#readme",
"dependencies": {
"@line/bot-sdk": "^7.4.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/node": "^14.6.0",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"loglevel": "^1.8.0",
"prom-client": "^14.0.1",
"qs": "^6.9.4",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/supertest": "^2.0.11",
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"nodemon": "^2.0.4",
"supertest": "^6.1.6",
"ts-jest": "^26.3.0",
"ts-node": "^8.10.2"
}
}