-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "bloom-azure-functions",
"version": "1.0.0",
"license": "MIT",
"description": "",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prestart": "npm run build",
"start": "func start",
"test": "jest --verbose",
"lint": "eslint -c .eslintrc.js --ext .ts ."
},
"//": "typescript and @azure/functions need to be here rather than devDependencies so the",
"// ": "Azure deployment script can run the typescript transpilation using our local typescript",
"dependencies": {
"@aws-sdk/client-s3": "^3.421.0",
"@azure/functions": "^1.2.3",
"@crowdin/crowdin-api-client": "^1.12.3",
"@types/node": "^13.13.52",
"axios": "^0.21.1",
"contentful": "^9.1.4",
"durable-functions": "^2.0.0",
"entities": "^3.0.1",
"moment": "^2.29.1",
"pg": "^8.7.1",
"typescript": "^3.9.10"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@xmldom/xmldom": "^0.7.5",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"stub-azure-function-context": "^2.0.0-alpha.6",
"ts-jest": "^27.0.7",
"xml-formatter": "^2.5.1",
"xpath": "^0.0.32"
},
"volta": {
"node": "20.10.0"
}
}