forked from Antioch-Tech/bible-reference-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1015 Bytes
/
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
{
"name": "bible-reference-toolkit-monorepo",
"version": "0,0,0",
"description": "Mono repo for bible-reference-toolkit packages",
"author": "@tim-hub",
"repository": {
"type": "git",
"url": "https://github.com/tim-hub/bible-reference-toolkit"
},
"bugs": {
"url": "https://github.com/tim-hub/bible-reference-toolkit/issues"
},
"homepage": "https://github.com/tim-hub/bible-reference-toolkit",
"scripts": {
"test:all": " nx run-many -t test",
"build:all": " nx run-many -t build"
},
"devDependencies": {
"@nx/js": "16.8.1",
"bun-types": "^1.0.1",
"nx": "16.8.1",
"nx-cloud": "latest",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"nx": {
"targets": {
"test": {
"outputs": [
"{projectRoot}/coverage"
]
},
"build": {
"outputs": [
"{projectRoot}/dist"
]
}
}
},
"workspaces": [
"packages/*"
]
}