-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
35 lines (35 loc) · 1.18 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
{
"name": "@bible-engine/source",
"version": "1.4.6",
"license": "MIT",
"description": "BibleEngine mono-repo root package.json, used mainly to execute build scripts. This package is not published to npm.",
"private": true,
"scripts": {
"postinstall": "yarn run buildAll",
"heroku": "node server/lib/heroku.js",
"buildAll": "yarn workspace @bible-engine/core run build && yarn workspace @bible-engine/importers run build && yarn workspace @bible-engine/server run generateApiClient && yarn workspace @bible-engine/server run build && yarn workspace @bible-engine/client run build",
"typeorm": "yarn ts-node ./node_modules/typeorm/cli.js"
},
"dependencies": {
"typeorm": "~0.3.11"
},
"devDependencies": {
"@types/jest": "24.0.11",
"@types/node": "18.7.18",
"jest": "24.5.0",
"rimraf": "^2.6.3",
"sqlite3": "5.1.2",
"ts-jest": "24.1.0",
"ts-node": "~10.9.1",
"tslint": "6.1.3",
"typescript": "~4.9"
},
"workspaces": {
"packages": [
"core",
"importers",
"server",
"client"
]
}
}