-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.19 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
{
"name": "data-repo",
"description": "Collection of packages implementing a shared interface for interacting with a variety of data stores and services",
"repository": "[email protected]:jbbeal/data-repo.git",
"author": "Jeff Beal <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"build": "echo 'no build in root workspace; use buildall to build full project'",
"buildall": "yarn workspaces foreach -tv run build",
"test": "echo 'no tests in root workspace; use testall to test full project'",
"testall": "yarn workspaces foreach -tv run test",
"lint": "echo 'no lint in root workspace; use lintall to lint full project'",
"lintall": "yarn workspaces foreach -tv run lint"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/eslint": "^8",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.2",
"typescript": "^4.9.4"
}
}