-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 807 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 807 Bytes
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
{
"name": "broswap-be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc && npm run copy-assets",
"watch": "tsc -w",
"dev": "nodemon dist/index.js",
"start": "concurrently \"npm run watch\" \"npm run dev\"",
"copy-assets": "copyfiles -u 1 assets/**/* dist/assets"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/big.js": "^6.2.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.4.1",
"concurrently": "^8.2.2",
"nodemon": "^3.1.4",
"typescript": "^5.5.4",
"copyfiles": "^1.0.0"
},
"dependencies": {
"@minswap/sdk": "^0.3.2",
"cors": "^2.8.5",
"express": "^4.19.2",
"lucid-cardano": "^0.10.7"
}
}