-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
28 lines (28 loc) · 859 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
{
"name": "azure-serverless-discord-bot",
"version": "1.0.4",
"description": "",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prepack": "npx shx rm -rf dist node_modules && npm install && npm run build && npm prune --production --force",
"pack": "tar --exclude-from=.funcignore -a -c -f out.zip .",
"postpack": "npm install",
"prestart": "npm run build",
"start": "func start",
"forward": "ngrok http 7071",
"poststart": "ngrok http 7071",
"test": "echo \"No tests yet...\""
},
"dependencies": {
"slash-create": "https://github.com/Snazzah/slash-create"
},
"devDependencies": {
"@azure/functions": "^1.2.3",
"@types/node": "^16.3.3",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"typescript": "^4.0.0"
}
}