-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.38 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 4.38 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "ui_lego",
"version": "0.0.1",
"description": "It's a UI starter from make next developoment faster",
"main": "./createComponent.js",
"repository": "[email protected]:HamzaAmar/ui_lego.git",
"author": "Hamza Miloud Amar <[email protected]>",
"license": "MIT",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\"",
"stylelint": "stylelint \"src/**/*.{css,scss}\"",
"lint:fix": "yarn lint --fix",
"lint:check": "yarn lint --quiet",
"stylelint:fix": "yarn stylelint --fix",
"stylelint:check": "yarn stylelint --quiet",
"prettier:base": "prettier --parser typescript --single-quote --write",
"prettier:check": "yarn prettier:base --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "yarn prettier:base \"src/**/*.{ts,tsx}\"",
"validation": "npx concurrently yarn:type-check yarn:lint:check yarn:stylelint:check yarn:prettier:check",
"prepare": "husky install",
"pre-commit": "lint-staged",
"cz": "exec < /dev/tty && git cz --hook || true",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test-storybook": "test-storybook",
"test-storybook:coverage": "yarn test-storybook --coverage",
"test-storybook:cross-browser": "yarn test-storybook --browsers chromium firefox webkit",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@storybook/addon-a11y": "^6.5.16",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-coverage": "^0.0.8",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.16",
"@storybook/test-runner": "^0.9.4",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^28.1.8",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"axe-playwright": "^1.1.11",
"babel-jest": "^29.0.1",
"babel-loader": "^8.2.5",
"babel-plugin-react-docgen": "^4.2.1",
"babel-plugin-react-docgen-typescript": "^1.5.1",
"chromatic": "^6.8.1",
"commitizen": "^4.2.5",
"concurrently": "^7.4.0",
"css-loader": "^6.7.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-testing-library": "^5.6.2",
"husky": "^8.0.1",
"jest": "^29.0.1",
"lint-staged": "^13.0.3",
"msw": "^0.47.0",
"msw-storybook-addon": "^1.7.0",
"postcss": "^8.4.16",
"postcss-scss": "^4.0.4",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.54.5",
"sass-loader": "^13.0.2",
"storybook-addon-pseudo-states": "^1.15.2",
"storybook-addon-rtl": "^0.4.4",
"storybook-addon-themes": "^6.1.0",
"storybook-rtl-addon": "^0.3.3",
"style-loader": "^3.3.1",
"stylelint": "^14.11.0",
"stylelint-color-format": "^1.1.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard": "^28.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-order": "^5.0.0",
"stylelint-semantic-groups": "^1.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.0.2",
"@radix-ui/react-popover": "^1.0.3",
"@radix-ui/react-slider": "^1.1.0",
"@radix-ui/react-tooltip": "^1.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}