-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.77 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
{
"name": "suomifi-design-system",
"private": true,
"description": "Suomi.fi Design System",
"version": "2.0.0",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"pre-commit": "lint-staged",
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint --dir components --dir interfaces --dir layouts --dir pages --dir styles --dir utils"
},
"lint-staged": {
"**/*.scss": [
"stylelint"
],
"**/*.{js,jsx,ts,tsx}": [
"eslint"
]
},
"dependencies": {
"@types/styled-components": "^5.1.25",
"@types/warning": "^3.0.0",
"classnames": "^2.3.1",
"next": "12.3.4",
"next-export-i18n": "^2.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-element-to-jsx-string": "^15.0.0",
"react-is": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"sass": "^1.52.2",
"styled-components": "^5.3.5",
"suomifi-design-tokens": "6.0.0",
"suomifi-icons": "7.2.0",
"suomifi-ui-components": "^15.0.0"
},
"devDependencies": {
"@types/node": "^17.0.19",
"@types/react": "^18.2.20",
"@types/react-dom": "18.2.7",
"@types/react-syntax-highlighter": "^15.5.2",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "8.47.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"stylelint": "^15.2.0",
"stylelint-config-standard-scss": "^7.0.1",
"stylelint-prettier": "^3.0.0",
"typescript": "4.7.3"
},
"resolutions": {
"@types/react": "^17.0.30"
}
}