-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.6 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
{
"name": "frontend-proxy-server",
"version": "1.0.0",
"description": "Proxy server for external API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Joshua D. Graber <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"dev": "NODE_ENV=development ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"start": "node dist/index.js",
"test": "jest --config",
"test:unit": "jest --config ./jest.config.unit.cjs",
"test:integration": "jest --config ./jest.config.integration.cjs",
"coverage": "jest --coverage"
},
"dependencies": {
"axios": "^1.7.9",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.4.1",
"uuid": "^11.0.3",
"winston": "^3.17.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"prettier-eslint": "^16.1.2",
"supertest": "^7.0.0",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.4.4"
},
"optionalDependencies": {
"win-node-env": "^0.6.1"
}
}