-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
109 lines (109 loc) · 3.61 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
{
"name": "@mrshmllw/smores-react",
"version": "10.5.0",
"main": "./dist/index.js",
"description": "Collection of React components used by Marshmallow Technology",
"keywords": [
"react",
"components",
"design system",
"component library"
],
"files": [
"dist"
],
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && tsc --p ./tsconfig.build.json",
"build-storybook": "storybook build -c .storybook",
"check-types": "tsc --noEmit",
"prepublishOnly": "npm run build",
"start": "npm run storybook",
"storybook": "storybook dev -p 6006",
"test-storybook": "test-storybook",
"test-storybook:ci": "npm run test-storybook --maxWorkers=2",
"test:coverage": "vitest --coverage --silent",
"test:watch": "vitest --watch --silent",
"test": "vitest --silent",
"updateSnaps": "vitest --u",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect && husky",
"pre-commit-lint": "npm run check-types && lint-staged",
"commitlint": "commitlint --edit",
"fix-package-lock-conflicts": "echo \"Make sure conflicts in package.json are resolved before running this script\" && npm i --package-lock-only"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/types": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.0",
"@snyk/protect": "^1.1294.3",
"@storybook/addon-a11y": "^8.4.7",
"@storybook/addon-coverage": "^1.0.5",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.2.1",
"@storybook/test-runner": "^0.21.0",
"@testing-library/react": "^16.1.0",
"@types/body-scroll-lock": "^3.1.0",
"@types/dompurify": "^3.2.0",
"@types/node": "^22.10.4",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"axe-playwright": "^2.0.3",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.1",
"storybook": "^8.0.4",
"styled-components": "^6.1.13",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vitest": "^2.1.8"
},
"dependencies": {
"@floating-ui/react": "0.27.2",
"@lexical/react": "^0.22.0",
"@storybook/preview-api": "^8.4.7",
"body-scroll-lock": "^4.0.0-beta.0",
"date-fns": "^4.1.0",
"dompurify": "^3.2.3",
"fuse.js": "^7.0.0",
"lexical": "^0.22.0",
"polished": "^4.1.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17 || ^18",
"react-dom": "^16.8.0 || ^17 || ^18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marshmallow-insurance/smores-react.git"
},
"author": "Todor Tsankov",
"license": "MIT",
"homepage": "https://github.com/marshmallow-insurance/smores-react#readme",
"snyk": true
}