-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.46 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
{
"name": "mpr.kirke.dev",
"version": "0.4.3",
"description": "Dashboard and analytics for USDA Mandatory Price Reporting",
"homepage": "https://github.com/kirkedev/mpr.kirke.dev",
"author": "Andrew Kirkegaard <[email protected]> (https://github.com/kirkedev)",
"license": "ISC",
"private": true,
"scripts": {
"prepare": "husky install .githooks",
"lint": "eslint . --ext .ts,.svelte",
"fix": "yarn lint --fix",
"stop": "TAG=${TAG:-$(git describe --tags --match 'v*' --dirty --always)}; docker compose down --remove-orphans",
"dev": "TAG=${TAG:-$(git describe --tags --match 'v*' --dirty --always)}; yarn stop && docker compose up --build",
"build": "TAG=${TAG:-$(git describe --tags --match 'v*' --dirty --always)}; yarn workspace api build && yarn workspace app build",
"start": "TAG=${TAG:-$(git describe --tags --match 'v*' --dirty --always)}; yarn stop && yarn build && docker compose -f docker-compose.yml up"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-plugin-svelte": "^2.35.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"typescript": "^5.4.2"
},
"workspaces": [
"api",
"app",
"lib",
"test",
"test/mpr"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}