-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 969 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 969 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
34
35
36
37
{
"name": "alphaQuantJS",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"format": "prettier --write .",
"check-types": "turbo run check-types",
"prepare": "husky && husky install",
"changeset": "changeset",
"release": "changeset publish",
"version-packages": "changeset version",
"test": "echo \"no tests at root\" && exit 0",
"format:check": "prettier --check ."
},
"devDependencies": {
"@changesets/cli": "^2.29.2",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"eslint": "^9.24.0",
"eslint-plugin-jsdoc": "^50.6.9",
"husky": "^8.0.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"turbo": "^2.5.0",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@11.2.0",
"workspaces": [
"apps/*",
"packages/*"
]
}