-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "ref-sdk-api",
"version": "1.0.0",
"main": "dist/server.js",
"scripts": {
"fmt": "prettier --write '**/*.{js,jsx,ts,tsx,json,mjs}'",
"lint": "tsc --pretty --noEmit && eslint .",
"build": "tsc && cp src/tokens.json dist/",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@ref-finance/ref-sdk": "^1.4.0",
"axios": "^1.7.9",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.20.0",
"express-rate-limit": "^7.4.1",
"fuse.js": "^7.0.0",
"helmet": "^8.0.0",
"node-cache": "^5.1.2",
"react": ">=16"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@flydotio/dockerfile": "^0.5.9",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"eslint": "^8.57.0",
"globals": "^15.9.0",
"prettier": "^2.8.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0"
}
}