-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.42 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.42 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
64
65
66
67
68
69
70
71
72
73
{
"name": "ts-turborepo-boilerplate",
"version": "0.0.1",
"private": true,
"description": "Start your next offchain project in seconds",
"homepage": "https://github.com/defi-wonderland/ts-turborepo-boilerplate#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/defi-wonderland/ts-turborepo-boilerplate.git"
},
"license": "MIT",
"author": "Wonderland",
"type": "module",
"scripts": {
"build": "turbo run build",
"check-types": "turbo run check-types",
"clean": "turbo run clean",
"create-package": "./create-package.sh",
"dev": "turbo run dev",
"dev:local": "./scripts/dev-local.sh",
"env:prebuild": "turbo run env:prebuild",
"format": "turbo run format",
"format:fix": "turbo run format:fix",
"preinstall": "npx only-allow pnpm",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"prepare": "husky && chmod +x ./create-package.sh",
"start": "turbo run start",
"test": "turbo run test",
"test:cov": "turbo run test:cov",
"test:integration": "turbo run test:integration"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.js,*.ts,*.json": "eslint --fix",
"package.json": "sort-package-json"
},
"devDependencies": {
"@commitlint/config-conventional": "19.4.1",
"@ianvs/prettier-plugin-sort-imports": "4.3.1",
"@types/node": "20.3.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "2.1.9",
"commitlint": "19.4.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.5",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"sort-package-json": "2.10.1",
"turbo": "2.1.1",
"typescript": "5.5.4",
"vitest": "2.1.9"
},
"packageManager": "pnpm@9.7.1+sha256.46f1bbc8f8020aa9869568c387198f1a813f21fb44c82f400e7d1dbde6c70b40",
"engines": {
"node": "24"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"react": "19",
"utf-8-validate": "6",
"zod": "4"
}
},
"overrides": {
"use-sync-external-store": "1.4.0"
}
}
}