-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 3.13 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 3.13 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "cryptobot-nodejs-migration",
"version": "1.0.0",
"private": true,
"description": "CryptoBot Node.js Migration - Modern TypeScript implementation of legacy .NET trading bot",
"workspaces": [
"frontend",
"backend",
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build:packages && npm run build:backend && npm run build:frontend",
"build:packages": "cd packages/@cryptobot/types && npm run build && cd ../database && npm run build && cd ../indicators && npm run build && cd ../exchanges && npm run build && cd ../trading && npm run build",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"test": "npm run test:packages && npm run test:backend && npm run test:frontend",
"test:integration": "cd backend && npm run test:integration",
"test:all": "npm run test && npm run test:integration",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:packages": "cd packages/@cryptobot/types && npm test && cd ../database && npm test && cd ../indicators && npm test && cd ../exchanges && npm test && cd ../trading && npm test",
"test:backend": "cd backend && npm test",
"test:frontend": "cd frontend && npm test",
"lint": "npm run lint:packages && npm run lint:backend && npm run lint:frontend",
"lint:packages": "cd packages/@cryptobot/types && npm run lint && cd ../database && npm run lint && cd ../indicators && npm run lint && cd ../exchanges && npm run lint && cd ../trading && npm run lint",
"lint:backend": "cd backend && npm run lint",
"lint:frontend": "cd frontend && npm run lint",
"typecheck": "npm run typecheck:packages && npm run typecheck:backend && npm run typecheck:frontend",
"typecheck:packages": "cd packages/@cryptobot/types && npm run typecheck && cd ../database && npm run typecheck && cd ../indicators && npm run typecheck && cd ../exchanges && npm run typecheck && cd ../trading && npm run typecheck",
"typecheck:backend": "cd backend && npm run typecheck",
"typecheck:frontend": "cd frontend && npm run typecheck",
"clean": "rimraf node_modules dist build && rimraf packages/*/node_modules packages/*/dist && rimraf backend/node_modules backend/dist && rimraf frontend/node_modules frontend/build"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@testing-library/jest-dom": "^6.8.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.4.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/TonyCasey/cryptobot-nodejs-migration.git"
},
"author": "Tony Casey",
"license": "MIT"
}