-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.26 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
48
49
50
51
52
53
{
"name": "azf-dust-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"start": "func start",
"test": "jest && standard",
"test:lint": "standard",
"test:jest": "jest",
"test:watch": "jest --watch",
"standard-fix": "standard --fix",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vtfk/azf-dust-api.git"
},
"keywords": [],
"author": "Rune Moskvil Lyngås <[email protected]> (https://github.com/runely)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vtfk/azf-dust-api/issues"
},
"homepage": "https://github.com/vtfk/azf-dust-api#readme",
"dependencies": {
"@vtfk/logger": "4.3.2",
"axios": "0.27.2",
"azure-ad-verify-token": "1.1.2",
"durable-functions": "1.5.4",
"jsonwebtoken": "8.5.1",
"mongodb": "^4.17.1",
"node-cache": "5.1.2",
"qs": "6.11.2"
},
"devDependencies": {
"husky": "7.0.4",
"jest": "27.5.1",
"standard": "16.0.4"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testMatch": [
"**/tests/**/*test.[jt]s?(x)",
"**/?(*.)+.(spec|test).[jt]s?(x)"
]
}
}