forked from navikt/aksel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
142 lines (142 loc) · 4.03 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "nav-ds",
"description": "Repository for NAV Designsystem",
"version": "1.1.0",
"private": true,
"scripts": {
"clean:lib": "node scripts/clean.js",
"test": "yarn workspaces foreach -p run test",
"postinstall": "husky install",
"boot": "yarn clean:lib && yarn build:codemod && yarn workspaces foreach -pA --topological-dev --no-private run build",
"docgen": "yarn workspaces foreach -p run docgen",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook",
"chromatic": "npx chromatic --project-token x3xqdfgkujg --build-script-name build:storybook",
"build:codemod": "yarn workspace @navikt/ds-codemod build",
"build:tokens": "yarn workspace @navikt/ds-tokens build",
"update:icons": "yarn workspace @navikt/ds-icons update",
"update:tokens": "yarn workspace @navikt/ds-tokens update",
"lint": "yarn lint:jsts && yarn lint:css",
"lint:jsts": "yarn eslint .",
"lint:css": "yarn stylelint @navikt/**/*.css"
},
"workspaces": [
"@navikt/core/*",
"@navikt/internal/*",
"@navikt/codemod",
"examples/*"
],
"prettier": {},
"eslintConfig": {
"extends": [
"react-app"
],
"rules": {
"import/no-anonymous-default-export": [
"error",
{
"allowObject": true
}
]
},
"ignorePatterns": [
"node_modules",
"lib",
"public",
"examples",
"esm",
"cjs",
"**/codemod/**/*.js"
]
},
"stylelint": {
"extends": [
"stylelint-config-standard",
"stylelint-config-prettier"
],
"rules": {
"value-list-comma-newline-after": null,
"declaration-colon-newline-after": null,
"no-descending-specificity": null,
"selector-class-pattern": null,
"custom-property-pattern": null,
"keyframes-name-pattern": null,
"function-url-quotes": null,
"property-no-vendor-prefix": null,
"alpha-value-notation": "number",
"declaration-property-value-disallowed-list": {
"justify-content": [
"start",
"end"
],
"align-items": [
"start",
"end"
]
},
"value-keyword-case": [
"lower",
{
"camelCaseSvgKeywords": true
}
]
},
"ignoreFiles": [
"**/dist/**"
]
},
"repository": {
"type": "git",
"url": "https://github.com/navikt/nav-frontend-moduler.git"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@storybook/addon-a11y": "6.5.5",
"@storybook/addon-actions": "6.5.5",
"@storybook/addon-docs": "6.5.5",
"@storybook/addon-essentials": "6.5.5",
"@storybook/addon-storysource": "6.5.5",
"@storybook/addons": "6.5.5",
"@storybook/builder-webpack5": "6.5.5",
"@storybook/manager-webpack5": "6.5.5",
"@storybook/react": "6.5.5",
"@storybook/theming": "6.5.5",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"@whitespace/storybook-addon-html": "^5.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"chromatic": "6.5.4",
"css-loader": "^5.0.1",
"eslint": "^8.16.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"extend": "^3.0.2",
"fast-glob": "^3.2.11",
"fs-extra": "^10.0.1",
"glob": "^7.1.6",
"husky": "^5.0.0",
"lerna": "^4.0.0",
"msw": "^0.36.5",
"msw-storybook-addon": "^1.6.3",
"prettier": "2.6.2",
"pretty-quick": "^3.1.3",
"prop-types": "^15.5.10",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"style-loader": "^1.2.1",
"stylelint": "^14.8.5",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"typescript": "^4.7.2",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"yarn": "^1.22.10"
},
"packageManager": "[email protected]"
}