-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.76 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.76 KB
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
{
"name": "datastore-services",
"version": "1.6.7",
"description": "Datastore utility endpoints",
"type": "module",
"scripts": {
"start": "func start --javascript",
"start:verbose": "func start --javascript --verbose",
"int:test": "newman run integration-tests/datastore-services-integration-tests.postman_collection.json -e integration-tests/envs/local-function-7071.postman_environment.json",
"int:test:dev": "newman run integration-tests/datastore-services-integration-tests.postman_collection.json -e integration-tests/envs/func-datastore-services-dev.postman_environment.json",
"int:test:prod": "newman run integration-tests/datastore-services-integration-tests.postman_collection.json -e integration-tests/envs/func-datastore-services-prod.postman_environment.json",
"prepare": "husky"
},
"author": "IATI",
"dependencies": {
"@azure/storage-blob": "^12.17.0",
"chardet": "^2.0.0",
"dotenv": "^16.4.5",
"durable-functions": "^2.1.3",
"node-fetch": "^3.2.10",
"pg": "^8.11.5",
"uuid": "^14.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@prettier/plugin-xml": "^3.4.1",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.0.0",
"husky": "^9.0.0",
"lint-staged": "^17.0.0",
"prettier": "^3.2.5"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"engines": {
"node": "24.x.x",
"npm": "11.x.x"
},
"overrides": {
"validator": "^13.15.22",
"durable-functions": {
"uuid": "~3.4.0"
}
}
}