-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.19 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
37
38
39
40
41
42
{
"name": "trading-system",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"registry": "https://registry.npmjs.org",
"license": "UNLICENSED",
"scripts": {
"setup": "mkdir -p .output .log",
"clean": "rm -rf .output/*/*",
"build:babel": "babel src --out-dir build",
"dev": "node build/app.js",
"predev": "yarn build:babel",
"dev:watch": "nodemon --watch src --exec \"yarn build:babel && node build/app.js\"",
"start": "node build/app.js",
"prestart": "yarn clean && yarn setup && yarn build:babel",
"db:clear": "yarn build:babel && node build/modules/database/clear-db.js"
},
"dependencies": {
"@supabase/supabase-js": "^2.58.0",
"axios": "^1.7.2",
"broker": "https://github.com/sour-d/broker.git",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"lodash": "^4.17.21",
"mathjs": "^12.4.2",
"morgan": "^1.10.0",
"papaparse": "^5.4.1",
"react": "^18",
"react-dom": "^18",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.24.6",
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@types/node": "^20.12.7",
"nodemon": "^3.1.2"
}
}