-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
143 lines (143 loc) · 4.1 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
143
{
"name": "design-react-kit",
"description": "Componenti React per Bootstrap 5",
"keywords": [
"react",
"bootstrap",
"bootstrap-italia"
],
"author": "Presidenza del Consiglio dei Ministri",
"contributors": [
"Matteo Avesani",
"Gianluca Esposito",
"Matteo Manchi",
"Paolo Mariotti",
"Marco Liberati",
"Francesco Zaia",
"Sanyam Dogra",
"Silvio Relli",
"Sabatino Galasso",
"Andrea Stagi",
"Federico Turbino",
"Nicola Squartini"
],
"bugs": {
"url": "https://github.com/italia/design-react-kit/issues"
},
"version": "5.2.0",
"license": "BSD-3",
"type": "module",
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"module": "./dist/index.js",
"main": "./dist/index.cjs"
}
},
"sideEffects": false,
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/italia/design-react-kit.git"
},
"engines": {
"node": ">=20"
},
"scripts": {
"start": "NODE_OPTIONS=--max_old_space_size=16384 npm run storybook:serve",
"build": "tsup && tsc",
"test": "jest ./src ./test --passWithNoTests",
"test:ci": "jest ./src ./test --passWithNoTests --runInBand --ci",
"lint": "npx eslint .",
"prepare": "tsup && tsc && husky install",
"format-code": "npx prettier . --write",
"storybook:serve": "storybook dev -p 9001",
"storybook:build": "storybook build --docs",
"storybook:build:base": "storybook build",
"storybook:deploy": "npx gh-pages -d storybook-static -m 'chore: update documentation [ci skip]' --nojekyll",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && node scripts/wait-confirm && git add CHANGELOG.md",
"postversion": "echo \"You can now publish your version using 'git push --follow-tags'\""
},
"peerDependencies": {
"bootstrap-italia": "2.8.8",
"react": ">=18.2.0"
},
"browserslist": [
"extends browserslist-config-design-italia"
],
"lint-staged": {
"./{src,stories,test}/**/*.{js,ts,tsx,jsx,mdx}": "yarn lint"
},
"devDependencies": {
"@babel/preset-react": "^7.24.7",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@eslint/js": "^9.10.0",
"@storybook/addon-a11y": "^8.0.5",
"@storybook/addon-docs": "^8.0.5",
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-interactions": "^8.0.5",
"@storybook/addon-links": "^8.0.5",
"@storybook/addon-onboarding": "^8.0.5",
"@storybook/blocks": "^8.0.5",
"@storybook/react": "^8.0.5",
"@storybook/react-vite": "^8.0.5",
"@storybook/test": "^8.0.5",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16",
"@types/is-number": "^7.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.2",
"@types/react": "^18.2.75",
"@types/react-dom": "^18.2.24",
"@types/react-transition-group": "^4.4.10",
"bootstrap-italia": "^2.10.0",
"browserslist-config-design-italia": "^1.0.0",
"eslint": "^9.10.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"husky": "^8.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "15.2.10",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.75.0",
"storybook": "^8.0.5",
"ts-jest": "^29.1.2",
"tslib": "^2.4.0",
"tsup": "^8.0.2",
"typeface-lora": "^1.1.13",
"typeface-roboto-mono": "^1.1.13",
"typescript": "^5.4.5",
"typescript-eslint": "^8.4.0",
"vite": "^5.2.7"
},
"dependencies": {
"classnames": "^2.3.1",
"is-number": "^7.0.0",
"react-stickup": "^1.12.1",
"react-toastify": "^7.0.4",
"react-transition-group": "^4.4.5",
"reactstrap": "9.2.2",
"webfontloader": "^1.6.28"
},
"resolutions": {
"@types/react": "18.2.75",
"@types/react-dom": "18.2.24"
},
"overrides": {
"react-stickup": {
"react": "^18.2.0"
}
}
}