-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.05 KB
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
{
"name": "crypto-ex-backend",
"version": "1.0.0",
"description": "Crypto Exchange Backend Server",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Rupansh Sekar <rupanshsekar@hotmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "yarn build && node dist/index.js",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/express-rate-limit": "^6.0.0",
"@types/node": "^20.8.8",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-functional": "^6.0.0",
"eslint-plugin-import": "^2.29.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"cors": "^2.8.5",
"crypto-exchange-rate": "git+https://github.com/xp-network/exchange-rate#master-dist",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.2"
}
}