-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "defrost-data-monorepo",
"version": "1.0.0",
"private": true,
"scripts": {
"start:indexer": "pnpm --filter indexer start",
"start:database": "pnpm --filter database start",
"build": "pnpm -r run build",
"build:indexer": "cd indexer && pnpm run build",
"build:database": "cd database && pnpm run build",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"prepare": "husky"
},
"dependencies": {
"dotenv": "^16.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^10.1.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"packageManager": "pnpm@10.6.1"
}