This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
119 lines (119 loc) · 3.58 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
{
"name": "rcl",
"version": "0.0.0",
"private": true,
"homepage": "https://github.com/easyfeedback/RCL#readme",
"bugs": {
"url": "https://github.com/easyfeedback/RCL/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/easyfeedback/RCL.git"
},
"license": "MIT",
"author": "Alexander Böhm",
"workspaces": [
"packages/*",
"tools/*"
],
"scripts": {
"build": "turbo run build",
"build:storybook": "build-storybook -o docs-build -s .storybook/public",
"changeset": "changeset",
"component:add": "ts-node tools/create-component",
"dev": "pnpm run build && start-storybook -p 6006 -s .storybook/public",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,md,yaml,yml}' --ignore-path ./config/.prettierignore",
"gen:theme-typings": "chakra-cli tokens packages/theme",
"lint": "turbo run lint",
"pkg": "manypkg run",
"prepare": "husky install config/husky && pnpm run gen:theme-typings",
"start": "pnpm run dev",
"test": "turbo run test",
"test:cov": "turbo run test:cov",
"test:watch": "turbo run test:watch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint . --ext .js,.jsx,.ts,.tsx --ignore-path ./config/.eslintignore"
]
},
"browserslist": [
"> 2% in DE",
"last 3 versions",
"Firefox ESR",
"not dead"
],
"prettier": "./config/.prettierrc.json",
"eslintConfig": {
"extends": "./config/.eslintrc.json"
},
"dependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.19.0",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.19.0",
"@chakra-ui/babel-plugin": "^1.0.8",
"@chakra-ui/cli": "^2.1.7",
"@chakra-ui/react": "^2.3.2",
"@chakra-ui/styled-system": "^2.3.1",
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.4",
"@fontsource/lato": "^4.5.9",
"@manypkg/cli": "^0.19.1",
"@storybook/addon-a11y": "^6.5.11",
"@storybook/addon-essentials": "^6.5.11",
"@storybook/addon-links": "^6.5.11",
"@storybook/builder-webpack5": "^6.5.11",
"@storybook/manager-webpack5": "^6.5.11",
"@storybook/node-logger": "^6.5.11",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.11",
"@testing-library/jest-dom": "^5.16.5",
"@types/jest": "^29.0.1",
"@types/node": "^18.7.17",
"@types/react": "^18.0.19",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"babel-loader": "^8.2.5",
"concurrently": "^7.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"husky": "^8.0.1",
"import-sort": "^6.0.0",
"import-sort-parser-typescript": "^6.0.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"jest-watch-typeahead": "^2.2.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-jsdoc": "^0.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"turbo": "^1.4.6",
"typescript": "^4.8.3",
"webpack": "^5.74.0"
},
"importSort": {
".js, .jsx, .es6, .es": {
"parser": "babylon",
"style": "module",
"options": {}
},
".ts, .tsx": {
"parser": "typescript",
"style": "module",
"options": {}
}
}
}