-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.12 KB
/
package.json
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
{
"name": "assertive-ts",
"description": "The Assertive.ts workspace",
"repository": "git@github.com:stackbuilders/assertive-ts.git",
"homepage": "https://stackbuilders.github.io/assertive-ts/",
"author": "Stack Builders <info@stackbuilders.com>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"packageManager": "yarn@4.1.0",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"check": "turbo check && yarn lint",
"build": "turbo run build",
"compile": "turbo run compile",
"docs": "turbo docs",
"lint": "eslint .",
"release": "turbo release --concurrency=1",
"test": "turbo run test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.3.0",
"@typescript-eslint/parser": "^7.3.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.24.0",
"turbo": "^1.12.4",
"typescript": "^5.4.2"
}
}