-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 965 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 965 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
33
{
"name": "@wheatstalk/tools",
"version": "0.0.0",
"author": "Josh Kellendonk <joshkellendonk@gmail.com>",
"license": "Apache-2.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --stream",
"lint": "eslint --ext .ts packages",
"test": "vitest packages --coverage",
"verdaccio": "verdaccio --config verdaccio.yaml",
"lerna:publish": "lerna publish from-package",
"lerna:version": "lerna version",
"check": "yarn lint && yarn build && yarn test --run"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vitest/coverage-v8": "^0.32.0",
"eslint": "^8.42.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"lerna": "^7.0.0",
"prettier": "^2.8.8",
"verdaccio": "^5.25.0",
"vitest": "^0.32.0"
},
"packageManager": "yarn@3.6.0"
}