-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
119 lines (119 loc) · 3.95 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": "performance-review-web",
"version": "0.2.1",
"private": true,
"dependencies": {
"@lingui/core": "^2.9.0",
"@lingui/react": "^2.9.0",
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.46",
"@mdx-js/react": "^1.5.3",
"@react-stately/utils": "^3.2.2",
"@types/base64-url": "^2.2.0",
"@types/jest": "^25.1.2",
"@types/lingui__core": "^2.7.0",
"@types/lingui__react": "^2.8.1",
"@types/nanoid": "^2.1.0",
"@types/node": "^13.7.0",
"@types/overlayscrollbars": "^1.9.0",
"@types/ramda": "^0.26.37",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-relay": "^7.0.7",
"@types/react-router-dom": "^5.1.5",
"@types/relay-runtime": "^8.0.9",
"@types/relay-test-utils": "^6.0.2",
"base64-url": "^2.3.3",
"clsx": "^1.1.1",
"jss": "^10.0.0",
"jss-rtl": "^0.3.0",
"lorem-ipsum": "^2.0.3",
"mdx.macro": "^0.2.9",
"mitt": "^1.2.0",
"nanoid": "^2.1.7",
"notistack": "^0.9.7",
"overlayscrollbars": "^1.10.2",
"ramda": "^0.27.0",
"react": "0.0.0-experimental-94c0244ba",
"react-dom": "0.0.0-experimental-94c0244ba",
"react-helmet-async": "^1.0.7",
"react-intersection-observer": "^9.4.0",
"react-markdown": "^5.0.0",
"react-relay": "^0.0.0-experimental-895a6fe0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"relay-enum-generator": "^0.0.3",
"relay-runtime": "^9.1.0",
"relay-test-utils": "^9.1.0",
"shabnam-font": "^5.0.0",
"typescript": "~3.8.3"
},
"scripts": {
"i18n:extract": "lingui extract --clean",
"i18n:compile": "lingui compile",
"prestart": "yarn relay && yarn i18n:compile",
"prebuild": "yarn relay && yarn i18n:compile",
"pretest": "yarn relay && yarn i18n:compile",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "eslint --max-warnings=0 src/**/*.{ts,tsx}",
"sort": "import-sort --write 'src/**/*.{ts,tsx,js,jsx}'",
"sort:check": "import-sort -l 'src/**/*.{ts,tsx,js,jsx}'",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"format:check": "prettier --check '**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"relay": "relay-compiler --src ./src --schema ./schema.graphql --extensions ts tsx --language typescript && relay-enum-generator",
"get-schema": "graphql get-schema -e default"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@lingui/cli": "^2.9.0",
"@lingui/macro": "^2.9.0",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-essentials": "^6.0.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/node-logger": "^6.0.21",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/react": "^6.0.21",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.3.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^8.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.1.0",
"babel-plugin-relay": "^9.1.0",
"graphql": "^15.0.0",
"graphql-cli": "^3.0.14",
"http-proxy-middleware": "^0.20.0",
"husky": "^4.3.0",
"import-sort-cli": "^6.0.0",
"import-sort-parser-typescript": "^6.0.0",
"import-sort-style-renke": "^6.0.0",
"jscodeshift": "^0.11.0",
"lint-staged": "^10.4.0",
"prettier": "^2.0.5",
"react-is": "^16.13.1",
"relay-compiler": "^9.1.0",
"relay-compiler-language-typescript": "^12.0.2",
"relay-config": "^9.1.0"
},
"proxy": "http://localhost:8000"
}