-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.39 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
{
"name": "familie-felles-frontend",
"private": true,
"repository": "https://github.com/navikt/familie-felles-frontend.git",
"license": "MIT",
"scripts": {
"ct": "cz",
"build": "lerna run build",
"storybook": "storybook dev -p 8000",
"build-storybook": "storybook build",
"deploy-storybook": "storybook-to-ghpages",
"lint": "eslint './packages/**/*.{ts,tsx}' --ignore-pattern '**/dist/*'",
"lint:fix": "eslint './packages/**/*.{ts,tsx}' --ignore-pattern '**/dist/*' --fix",
"publish:ci": "lerna publish --yes",
"publish:canary": "lerna publish --canary",
"publish:canary:ci": "lerna publish --canary --yes"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"lint-staged": {
"./packages/**/*.{js,ts,tsx}": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@storybook/addon-a11y": "^8.4.5",
"@storybook/addon-essentials": "^8.4.5",
"@storybook/addon-mdx-gfm": "^8.4.5",
"@storybook/addon-storysource": "^8.4.5",
"@storybook/blocks": "^8.4.5",
"@storybook/react": "^8.4.5",
"@storybook/react-webpack5": "^8.4.5",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/storybook-deployer": "^2.8.16",
"classnames": "^2.5.1",
"commitizen": "^4.3.1",
"copyfiles": "^2.4.1",
"css-loader": "^7.1.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.1.0-rc-06d0b89e-20240801",
"lerna": "^8.1.8",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^8.4.5",
"style-loader": "^4.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"webpack": "^5.95.0"
},
"workspaces": [
"packages/*"
]
}