-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
66
{
"name": "polaris-proxy",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "nodemon -r dotenv/config ./src/index.ts",
"build": "tsc",
"format": "prettier --check './**/*.{js,ts,md,json}'",
"format:fix": "prettier --write './**/*.{js,ts,md,json}'",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "yarn lint --fix .",
"lint:quiet": "yarn lint --quiet .",
"compile": "tsc --noEmit",
"check": "yarn format && yarn lint && yarn compile",
"check:quiet": "yarn format && yarn lint:quiet && yarn compile",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --silent --testNamePattern=\"^(?!LOCAL_ONLY:)\""
},
"keywords": [],
"author": "FR0NTIERX INC.",
"dependencies": {
"@fr0ntier-x/polaris-sdk": "^0.1.9",
"@google-cloud/kms": "^4.5.0",
"axios": "^1.7.7",
"buffer": "^6.0.3",
"cors": "^2.8.5",
"express": "^4.21.1",
"express-http-proxy": "^2.1.1",
"helmet": "^8.0.0",
"jwk-to-pem": "^2.0.6",
"pino": "^9.5.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/elliptic": "^6.4.18",
"@types/express": "^5.0.0",
"@types/express-http-proxy": "^1.6.6",
"@types/jest": "^29.5.14",
"@types/jwk-to-pem": "^2",
"@types/node": "^22.8.2",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "8.12.1",
"@typescript-eslint/parser": "8.12.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"engines": {
"node": "22.x"
},
"packageManager": "yarn@4.5.1",
"resolutions": {
"elliptic": "6.6.0"
}
}