-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.66 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
51
52
{
"name": "zkchainhub",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"start": "turbo run start",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "turbo run format",
"format:fix": "turbo run format:fix",
"check-types": "turbo run check-types",
"test": "turbo run test",
"test:cov": "turbo run test:cov",
"test:e2e": "turbo run test:e2e",
"prepare": "husky",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@commitlint/config-conventional": "19.2.2",
"@ianvs/prettier-plugin-sort-imports": "4.3.0",
"@types/express": "4.17.17",
"@types/node": "20.3.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "2.0.5",
"commitlint": "19.3.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"husky": "9.0.11",
"lint-staged": "15.2.7",
"prettier": "3.0.0",
"source-map-support": "0.5.21",
"supertest": "7.0.0",
"ts-loader": "9.4.3",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"turbo": "2.0.14",
"typescript": "5.1.3",
"vitest": "2.0.5"
},
"packageManager": "[email protected]+sha1.8c155dc114e1689d18937974f6571e0ceee66f1d",
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.js,*.ts": "eslint --fix"
}
}