-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.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": "syntrix",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/toffee-k21/syntrix#readme",
"bugs": {
"url": "https://github.com/toffee-k21/syntrix/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toffee-k21/syntrix.git"
},
"license": "ISC",
"author": "",
"main": "server.js",
"scripts": {
"dev": "npm run build && node dist/server.js",
"build": "esbuild src/server.ts --bundle --platform=node --target=node18 --outfile=dist/server.js && esbuild src/workers/price.worker.ts --bundle --platform=node --target=node18 --outfile=dist/workers/price.worker.js",
"start": "node dist/server.js"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.955.0",
"@aws-sdk/lib-dynamodb": "^3.955.0",
"axios": "^1.13.2",
"dotenv": "^17.2.3",
"ejs": "^3.1.10",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3"
}
}