-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.74 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
120
121
122
123
124
125
126
127
{
"name": "event-horizon",
"version": "0.2.0",
"private": true,
"dependencies": {
"@apollo/client": "3.4.16",
"@rsuite/icons": "^1.0.2",
"@stdlib/utils-noop": "^0.0.7",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"change-case": "^4.1.2",
"classnames": "^2.3.1",
"copy-to-clipboard": "^3.3.1",
"date-fns": "^2.28.0",
"delay": "^5.0.0",
"effector": "^22.1.1",
"effector-react": "^22.0.4",
"effector-storage": "^5.0.0",
"firebase": "^9.2.0",
"graphql": "^16.0.1",
"history": "^5.1.0",
"patronum": "^1.8.2",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.17.1",
"react-icons": "^4.3.1",
"react-intl": "^5.24.6",
"react-qr-code": "^2.0.3",
"react-router-dom": "^6.0.0",
"react-scripts": "^4.0.3",
"react-timer-hook": "^3.0.5",
"react-use": "^17.2.4",
"rsuite": "^5.13.0",
"sb": "^6.3.7",
"swiper": "6.8.4",
"typescript": "^4.2.4",
"use-boolean-state": "^1.0.2",
"uuid": "^8.3.2",
"web-vitals": "^2.1.0"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"gen-gql": "graphql-codegen --config .graphqlconfig -r dotenv/config",
"lint": "eslint src/",
"pretty-quick": "pretty-quick --pattern \"**/*.*(js|jsx|ts|tsx)",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"postinstall": "patch-package"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@graphql-codegen/add": "^3.1.0",
"@graphql-codegen/cli": "^2.2.2",
"@graphql-codegen/fragment-matcher": "^3.2.0",
"@graphql-codegen/introspection": "^2.1.0",
"@graphql-codegen/near-operation-file-preset": "^2.2.1",
"@graphql-codegen/schema-ast": "^2.4.0",
"@graphql-codegen/typescript": "^2.3.1",
"@graphql-codegen/typescript-apollo-client-helpers": "^2.1.7",
"@graphql-codegen/typescript-graphql-files-modules": "^2.1.0",
"@graphql-codegen/typescript-operations": "^2.2.0",
"@graphql-codegen/typescript-react-apollo": "^3.2.1",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/node-logger": "^6.3.7",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.3.7",
"@types/uuid": "^8.3.1",
"customize-cra": "^1.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.1",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"react-app-rewire-aliases": "^0.2.0",
"react-app-rewired": "^2.1.8",
"sass": "^1.42.1",
"storybook-dark-mode": "^1.0.8",
"webworker": "^0.8.4"
},
"resolutions": {
"babel-loader": "8.1.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn pretty-quick && yarn lint --max-warnings=0"
}
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}