-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.36 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
42
43
{
"name": "lawbrador",
"version": "1.0.0",
"author": "Lennart van Laake",
"license": "AGPL-3.0-only",
"workspaces": [
"packages/**"
],
"lint-staged": {
"*.{html,js,ts,svench,svelte,json}": [
"prettier -c packages/prettier/index.js --write",
"eslint -c packages/eslint-config/index.js --fix"
]
},
"private": true,
"scripts": {
"docker-down": "docker-compose -f infra/dev/docker-compose.yml down",
"docker": "docker-compose -f infra/dev/docker-compose.yml up",
"test": "tsc --noEmit && lerna run svelte-check && lerna run test --parallel || killall node",
"dev": "yarn docker -d && lerna run dev --parallel || killall node",
"debug": "yarn docker -d && lerna run debug --parallel || killall node",
"run-it": "lerna run run-it",
"prepare": "husky install",
"format": "prettier --write --ignore-path .gitignore .",
"lint": "eslint -c packages/eslint-config/index.js --fix --ignore-path .gitignore .",
"precommit": "yarn format --loglevel error && yarn lint --quiet"
},
"devDependencies": {
"eslint": "^8.11.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5"
},
"resolutions": {
"typescript": "4.5.4",
"fast-json-stringify": "2.7.13",
"mongodb": "4.1.4",
"@sinclair/typebox": "0.23.1"
},
"dependencies": {
"lerna": "^4.0.0"
}
}