-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.95 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "nais-unleash",
"version": "4.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"all": "yarn lint && yarn test && yarn build",
"start": "node ./dist/index.js",
"build-and-start": "tsc && node ./dist/index.js",
"build": "tsc",
"test": "jest --coverage --no-cache --silent src/*.test.ts",
"test:debug": "jest --runInBand --coverage --no-cache --detectOpenHandles src/*.test.ts",
"eslint": "eslint",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix"
},
"author": "NAIS <aura@nav.no>",
"license": "MIT",
"engines": {
"node": "^20.0.0"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.48.0",
"google-auth-library": "^9.11.0",
"jsonwebtoken": "^9.0.2",
"log4js": "^6.9.1",
"unleash-server": "5.12.8"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/express-session": "1.18.0",
"@types/faker": "6.6.9",
"@types/jest": "^29.5.12",
"@types/js-yaml": "4.0.9",
"@types/jsonwebtoken": "^9.0.6",
"@types/make-fetch-happen": "10.0.4",
"@types/node": "20.14.10",
"@types/semver": "7.5.8",
"@types/stoppable": "1.1.3",
"@types/supertest": "6.0.2",
"@types/type-is": "1.6.6",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"eslint": "^9.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.8.0",
"jest": "^29.7.0",
"nock": "^13.5.4",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "5.5.3",
"typescript-eslint": "^7.16.0"
}
}