-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 915 Bytes
/
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
{
"name": "aleios-stress-test-toolbox",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"lint-fix": "turbo lint -- --fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky",
"unit-tests": "turbo unit-tests",
"integration-tests": "turbo integration-tests"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/node": "^20.11.13",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.7",
"lint-staged": "^15.2.1",
"prettier": "^3.1.1",
"turbo": "latest"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{js,ts}": "pnpm lint --"
},
"packageManager": "pnpm@8.9.0",
"engines": {
"node": ">=18"
}
}