-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 3.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "ft-frontend-saksbehandling",
"description": "Frontend for saksbehandlingsløsninger i Nav",
"author": "Nav",
"private": true,
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/navikt/ft-frontend-saksbehandling.git"
},
"scripts": {
"test": "lerna run test --stream",
"test:changed": "lerna run test --stream --since origin/main",
"test:coverage": "lerna run test:coverage --stream",
"tsc": "lerna run tsc --stream",
"tsc:changed": "lerna run tsc --stream --since origin/main",
"eslint": "lerna run eslint --stream",
"eslint:fix": "lerna run eslint:fix --stream",
"eslint:changed": "lerna run eslint --stream --since origin/main",
"stylelint": "lerna run stylelint --stream",
"prettier": "lerna run prettier --stream",
"build": "lerna run build --stream",
"lerna-publish": "yarn build && lerna publish",
"lerna-changed": "lerna changed",
"clean": "lerna run clean",
"prepare": "husky install",
"storybook-clean-deploy-folder": "rm -rf ./.storybook-static-build",
"storybook-build-all": "rm -rf ./.storybook-static-build",
"storybook-create-deploy-folder": "yarn storybook-build",
"storybook-build": "storybook build -o .storybook-static-build",
"storybook-deploy-to-github": "gh-pages -d .storybook-static-build -t",
"deploy-storybook": "yarn storybook-build && yarn storybook-deploy-to-github",
"storybook": "storybook dev --quiet "
},
"devDependencies": {
"@eslint/js": "9.19.0",
"@formatjs/intl-datetimeformat": "6.17.2",
"@formatjs/intl-numberformat": "8.15.2",
"@navikt/aksel-stylelint": "7.10.0",
"@navikt/ft-frontend-storybook-utils": "workspace:^",
"@storybook/addon-actions": "8.5.3",
"@storybook/addon-essentials": "8.5.3",
"@storybook/addon-links": "8.5.3",
"@storybook/builder-vite": "8.5.3",
"@storybook/cli": "8.5.3",
"@storybook/react": "8.5.3",
"@storybook/react-vite": "8.5.3",
"@storybook/theming": "8.5.3",
"@testing-library/jest-dom": "6.6.3",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@types/react-responsive": "9.0.0",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-c8": "0.33.0",
"body-parser": "1.20.3",
"cross-env": "7.0.3",
"eslint": "9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-vitest": "0.5.4",
"gh-pages": "6.3.0",
"globals": "15.14.0",
"husky": "9.1.7",
"jsdom": "26.0.0",
"lerna": "8.1.9",
"lint-staged": "15.4.3",
"postcss-less": "6.0.0",
"prettier": "3.4.2",
"react-test-renderer": "19.0.0",
"storybook": "8.5.3",
"stylelint": "16.14.1",
"stylelint-order": "6.0.4",
"typescript": "5.7.3",
"typescript-eslint": "8.23.0",
"vite": "6.0.11",
"vite-plugin-dts": "4.5.0",
"vitest": "3.0.5"
},
"resolutions": {
"@types/react": "19.0.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-test-renderer": "19.0.0"
},
"workspaces": {
"packages": [
"packages/*",
"packages/internal/*"
]
},
"lint-staged": {
"packages/**/*.{ts,tsx,js,jsx}": "eslint --cache --fix",
"packages/**/*.css": "stylelint --fix",
"packages/**/*.{ts,tsx,js,jsx, css}": "prettier --write"
},
"packageManager": "[email protected]",
"dependencies": {
"@types/uuid": "^10.0.0"
}
}