generated from bennycode/ts-node-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.18 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.18 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
{
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@tstv/eslint-config": "^4.1.2",
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"cross-env": "^10.1.0",
"dependency-cruiser": "^17.3.8",
"eslint": "^10.0.2",
"lefthook": "^2.1.1",
"lerna": "^9.0.4",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
},
"name": "typedtrader",
"private": true,
"scripts": {
"clean": "lerna run clean --parallel",
"dist": "lerna run dist",
"fix": "lerna run fix --parallel",
"graph": "nx graph",
"lint": "lerna run lint --parallel",
"release": "npm install && npm run dist && lerna publish && git commit -am \"chore: update CHANGELOGs\" && git push && npm run clean",
"start:bot": "lerna run start --scope @typedtrader/messaging",
"start:docs": "lerna run dist && lerna run dev --scope trading-signals-docs",
"pretest": "lerna run dist",
"test": "lerna run --no-sort --concurrency 8 test",
"test:types": "lerna run --no-sort --concurrency 8 test:types"
},
"version": "0.0.0",
"workspaces": {
"packages": [
"packages/*"
]
}
}