-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.54 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"author": "NAV",
"description": "Monorepo for felleskode og selvbetjeningsdialoger i Sykdom i familien",
"license": "MIT",
"name": "@navikt/sif-brukerdialog",
"repository": "https://github.com/navikt/sif-brukerdialog",
"version": "0.0.1",
"bugs": {
"url": "https://github.com/navikt/sif-brukerdialog/issues"
},
"dependencies": {
"turbo": "2.2.3"
},
"devDependencies": {
"@changesets/cli": "2.27.9",
"@sif/eslint-config": "*",
"config": "*",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"typescript": "5.6.3"
},
"lint-staged": {
"apps/**/*.{ts,tsx,js,jsx, css}": [
"prettier --write"
],
"packages/**/*.{ts,tsx,js,jsx, css}": [
"prettier --write"
]
},
"scripts": {
"build": "turbo build",
"build-storybook": "turbo build-storybook",
"clean-all": "turbo clean && rm -rf node_modules",
"clean": "turbo clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo lint",
"lint:eslint": "turbo lint:eslint",
"lint:tsc": "turbo lint:tsc",
"prepare": "husky install",
"test": "turbo test"
},
"workspaces": [
"apps/*",
"packages/*",
"server"
],
"overrides": {
"glob-parent": ">=5.1.2"
},
"private": true,
"packageManager": "yarn@4.5.0",
"resolutions": {
"@swc/core": "1.5.7"
}
}