-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "accounter-toolkit",
"type": "module",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": "18.19.0"
},
"scripts": {
"build": "bob build",
"ci:lint": "eslint --output-file eslint_report.json --format json",
"lint": "eslint --ignore-path .gitignore .",
"mesh:artifacts-rename": "yarn ts-node ./helpers/mesh-artifacts-rename.mjs",
"pre-commit": "lint-staged",
"prebuild": "rimraf dist/ .bob/ && yarn lint --quiet && yarn prettier && yarn workspaces run prebuild && yarn mesh:artifacts-rename",
"prettier": "prettier --ignore-path .prettierignore --write --list-different .",
"prettier:check": "prettier --check .",
"release": "yarn build && changeset publish"
},
"dependencies": {},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@theguild/eslint-config": "0.11.3",
"@theguild/prettier-config": "2.0.5",
"@types/node": "20.11.18",
"bob-the-bundler": "7.0.1",
"concurrently": "8.2.2",
"eslint": "8.56.0",
"glob": "10.3.10",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"prettier-plugin-sql": "0.18.0",
"typescript": "5.3.3"
},
"resolutions": {
"@changesets/**/prettier": "2.8.8"
},
"publishConfig": {
"directory": "dist",
"access": "public"
},
"lint-staged": {
"*.--write": "prettier --write"
}
}