-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.11 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.11 KB
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
{
"name": "abtion-component-library",
"version": "0.1.0",
"private": true,
"dependencies": {
"@abtion-oss/design-system-colors": "1.1.2",
"@heroicons/react": "^2.2.0",
"@swc/jest": "^0.2.38",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@uidotdev/usehooks": "^2.4.1",
"ag-grid-react": "^33.3.1",
"autoprefixer": "^10.4.21",
"classnames": "^2.3.2",
"css-loader": "^7.1.2",
"date-fns": "^4.1.0",
"file-loader": "^6.2.0",
"globals": "^16.3.0",
"history": "^5.3.0",
"jszip": "^3.10.1",
"luxon": "^3.2.1",
"postcss": "8",
"postcss-loader": "^8",
"react": "^18.2.0",
"react-day-picker": "^9.6.7",
"react-dom": "^18.2.0",
"react-router-dom": "^7.9.4",
"react-select": "^5.8.1",
"react-syntax-highlighter": "^15.6.1",
"sass": "^1.77.4",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.13",
"typescript": "^5.8.3",
"usehooks-ts": "^3.1.0",
"webpack": "^5.96.1"
},
"devDependencies": {
"@storybook/addon-a11y": "^8.6.14",
"@storybook/addon-actions": "^8.6.14",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-links": "^8.6.14",
"@storybook/addon-storysource": "^8.6.14",
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
"@storybook/blocks": "^8.6.12",
"@storybook/manager-api": "^8.6.14",
"@storybook/react": "^8.6.14",
"@storybook/react-webpack5": "^8.6.14",
"@storybook/theming": "^8.6.14",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/luxon": "^3.2.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.0.10",
"@types/testing-library__jest-dom": "^6.0.0",
"@types/webpack-env": "^1.18.8",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.38.0",
"@whitespace/storybook-addon-html": "^6.1.1",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-storybook": "^0.12.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.2",
"storybook": "^8.6.12",
"stylelint": "^16.18.0",
"stylelint-config-sass-guidelines": "^12.1.0"
},
"scripts": {
"start": "storybook dev -p 6006",
"build": "npm run build-storybook",
"build-storybook": "storybook build",
"test": "jest",
"test:watch": "jest --watch",
"lint": "npm run lint-style && npm run lint-eslint && npm run lint-prettier",
"lint-style": "stylelint ./**/*.scss",
"lint-eslint": "eslint .",
"lint-prettier": "prettier . --check",
"format": "prettier --write . && stylelint --fix ./**/*.scss"
},
"type": "module",
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Opera versions",
"last 2 Safari versions",
"last 2 iOS versions"
],
"resolutions": {
"jackspeak": "2.1.1"
}
}