-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.42 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@rpch/monorepo",
"version": "0.0.0",
"license": "LGPL-3.0",
"private": true,
"workspaces": [
"configs/*",
"packages/*",
"apps/*",
"devkit/*",
"examples/ethers"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"format": "turbo run format --no-cache; prettier --write .eslintrc.js .prettierrc.js tsconfig.json",
"format:ci": "turbo run format:ci --no-cache; prettier --check .eslintrc.js .prettierrc.js tsconfig.json",
"lint": "turbo run lint --no-cache",
"lint:ci": "turbo run lint:ci --no-cache",
"depcheck": "check-dependency-version-consistency",
"test": "turbo run test --no-cache",
"test:e2e": "turbo run start --filter @rpch/e2e"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"check-dependency-version-consistency": "^3.0.3",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-turbo": "^1.11.2",
"prettier": "^3.0.3",
"turbo": "^1.6.3",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"node_modules/variables/.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!variables/.*)"
]
}
}