This repository was archived by the owner on Mar 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.24 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.24 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
{
"name": "cash",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "CI=false && react-scripts build",
"build-storybook": "build-storybook -s public",
"chromatic": "chromatic --exit-zero-on-changes",
"eject": "react-scripts eject",
"format": "yarn lint --fix",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"sort-package-json": "sort-package-json 'package.json'",
"start": "react-scripts start",
"storybook": "start-storybook -p 6006 -s public",
"stylelint": "stylelint src/",
"stylelint:fix": "yarn stylelint --fix",
"test": "react-scripts test",
"test:e2e": "playwright test -c tests"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": "react-app",
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"dependencies": {
"@apollo/client": "3.7.9",
"@playwright/test": "1.31.2",
"@storybook/react": "6.5.16",
"@storybook/testing-library": "0.0.13",
"classnames": "2.3.2",
"dotenv": "16.0.3",
"graphql": "16.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router": "6.8.2",
"react-router-dom": "6.8.2",
"react-scripts": "5.0.1"
},
"devDependencies": {
"@arkweid/lefthook": "0.7.7",
"@babel/helper-call-delegate": "7.12.13",
"@componentdriven/csf": "0.0.2-alpha.0",
"@storybook/addon-actions": "6.5.16",
"@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/manager-webpack5": "6.5.16",
"@storybook/node-logger": "6.5.16",
"@storybook/preset-create-react-app": "4.1.2",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/classnames": "2.3.1",
"@types/jest": "29.4.0",
"@types/node": "18.14.4",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"babel-plugin-named-exports-order": "0.0.2",
"chromatic": "6.17.1",
"eslint": "8.35.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"jest-junit": "15.0.0",
"prettier": "2.8.4",
"prop-types": "15.8.1",
"sort-package-json": "2.4.1",
"storybook-css-modules": "1.0.8",
"stylelint": "15.2.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-rational-order": "0.1.2",
"stylelint-config-standard": "30.0.1",
"stylelint-order": "6.0.2",
"stylelint-prettier": "3.0.0",
"tslint": "6.1.3",
"typescript": "4.9.5",
"webpack": "5.75.0"
}
}