-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 819 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 819 Bytes
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
{
"name": "@0xforkitall/dev-config",
"description": "Shared config for development",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"prettify": "prettier . --check",
"prettify:fix": "prettier . --write",
"changelog": "yarn changeset status --since origin/main",
"changelog:add": "yarn changeset",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"eslint": "^8.47.0",
"husky": "^8.0.3",
"lerna": "^7.1.5",
"lint-staged": "^14.0.0",
"prettier": "^3.0.2"
},
"engines": {
"node": "^18.12.0",
"npm": "please-use-yarn"
}
}