-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
34 lines (34 loc) Β· 1003 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
{
"name": "bamboo-forest",
"version": "3.0.1",
"description": "π λλλ¬΄μ² μ¬λ μ± - Echo your message as anonymous on Slack!",
"author": {
"name": "Jongyoon Jeong",
"email": "wormwlrm13@gmail.com",
"url": "https://wormwlrm.github.io"
},
"main": "dist/app.js",
"scripts": {
"build": "npm run tsc -- -p .",
"build:watch": "npm run tsc -- -w -p .",
"start": "serverless offline --noPrependStageInUrl",
"release": "dotenv release-it",
"tsc": "tsc",
"deploy:dev": "NODE_ENV=development sls deploy --verbose",
"deploy:production": "NODE_ENV=production sls deploy --stage production --verbose"
},
"license": "MIT",
"dependencies": {
"@slack/bolt": "^3.3.0",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@types/node": "^14.14.35",
"dotenv-cli": "^7.0.0",
"release-it": "^14.14.2",
"serverless-dotenv-plugin": "^4.0.2",
"serverless-offline": "^12.0.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}