-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.1 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
{
"name": "function-ingest-videos",
"version": "1.2.0",
"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",
"test": "jest",
"release": "git tag v$npm_package_version && git push && git push --tags",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@azure/storage-blob": "^12.6.0",
"http-status-enum": "^1.0.2",
"parse-multipart": "^1.0.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@azure/functions": "^1.2.3",
"@fluffy-spoon/substitute": "^1.208.0",
"@types/form-data": "^2.5.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"form-data": "^4.0.0",
"jest": "^27.0.3",
"ts-jest": "^27.0.2",
"typescript": "^4.3.2"
}
}