-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.98 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
{
"name": "@eil-eten-lab/ui-kit",
"version": "0.1.0",
"license": "UNLICENSED",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lerna": "lerna",
"dev": "lerna run start --stream --parallel",
"test": "lerna run test --",
"build": "lerna run build",
"format": "prettier --write 'stories/**/*' 'packages/*/src/**/*' 'README.md'",
"lint": "eslint \"{stories,packages}/**/*.{ts,tsx,md,mdx,js,jsx}\" --config .eslintrc.js",
"precommit": "lint-staged",
"changeset": "changeset",
"release": "yarn run build && changeset publish",
"git-reset": "git reset --hard HEAD",
"git-clean": "git clean -d -x -e node_modules -e packages -f",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-interactions": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/builder-webpack4": "^6.5.15",
"@storybook/manager-webpack4": "^6.5.15",
"@storybook/react": "^6.5.15",
"@storybook/testing-library": "^0.0.13",
"@svgr/webpack": "^5.5.0",
"@testing-library/react": "13.3.0",
"@types/jest": "^26.0.14",
"@types/language-tags": "^1.0.1",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"babel-loader": "^8.3.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.0",
"lerna": "^6.1.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"release": "^6.3.1",
"storybook-addon-package-json": "^2.0.0",
"tsdx": "^0.14.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fontsource/inter": "^4.5.15",
"@foobar404/wave": "^2.0.4",
"@mui/material": "^5.10.5",
"@types/dom-mediacapture-record": "^1.0.14",
"emoji-picker-react": "^4.4.3",
"jsx-to-string": "^1.4.0",
"language-tags": "^1.0.8",
"react-debounce-input": "^3.3.0",
"react-icons": "^4.7.1",
"react-image-crop": "^10.0.9",
"react-quill": "^2.0.0",
"tslib": "^2.4.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{ts,tsx,md,mdx,js,jsx}": [
"npm run format",
"npx eslint --fix"
]
}
}