-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.37 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
36
37
38
39
40
41
{
"name": "lyric",
"version": "0.3.0",
"description": "Lyric Monorepo",
"scripts": {
"\n================= Build ===============": "",
"build:all": "pnpm -r build:all",
"\n============ Dev environment ==========": "",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"start:dev": "pnpm with-env pnpm --filter @overture-stack/lyric-data-model db:migrate:dev && pnpm with-env pnpm --parallel start:dev",
"test": "pnpm --filter @overture-stack/lyric test",
"test:coverage": "pnpm --filter @overture-stack/lyric test:coverage",
"with-env": "dotenv -e ./.env --",
"\n==== Prod environment (compiled) ======": "",
"start:prod": "pnpm --filter @overture-stack/lyric-data-model db:migrate:workspace-prod && pnpm --filter server start:worskpace-prod"
},
"author": "Ontario Institute for Cancer Research",
"license": "AGPL-3.0-or-later",
"private": true,
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.10",
"@types/sinon": "^17.0.3",
"c8": "^10.1.2",
"chai": "^5.1.1",
"dotenv-cli": "^7.4.2",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"mocha": "^10.6.0",
"prettier": "^3.3.3",
"sinon": "^18.0.0",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1"
},
"type": "module"
}