-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.49 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": "serieslist",
"description": "Always know which episode to watch next. Keep track of your series and seen episodes.",
"version": "1.0.0",
"private": true,
"license": "MIT",
"author": "Joosep Alviste <[email protected]> (https://joosep.xyz/)",
"repository": "JoosepAlviste/serieslist.git",
"homepage": "https://github.com/JoosepAlviste/serieslist#readme",
"bugs": "https://github.com/JoosepAlviste/serieslist/issues",
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"scripts": {
"build": "nx run-many -t build",
"generate:package": "nx generate @serieslist/nx-plugin:package && pnpm i",
"lint": "nx run-many -t lint",
"lint:deps": "syncpack lint",
"lint:fix": "nx run-many -t lint:fix",
"migrate": "nx run @serieslist/api:migrate",
"migrate:test": "nx migrate:test @serieslist/api",
"migration": "nx run @serieslist/db:migration",
"postinstall": "cp -n .env.example .env || exit 0",
"quality": "nx run-many -t lint,tsc,test:coverage,build --verbose",
"start": "nx run-many -t start",
"start:e2e": "nx run-many -t start:e2e",
"start:prod": "nx run-many -t start:prod --output-style stream",
"test": "nx run-many -t test",
"test:coverage": "nx run-many -t test:coverage --verbose",
"test:e2e": "nx test:e2e @serieslist/e2e",
"tsc": "nx run-many -t tsc"
},
"devDependencies": {
"@nx/devkit": "17.2.8",
"@nx/plugin": "17.2.8",
"dotenv-cli": "^7.3.0",
"nx": "17.2.8",
"syncpack": "^12.3.0"
}
}