-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
126 lines (126 loc) · 3.61 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
{
"name": "data-explorer-client",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/globalfund/data-explorer-client.git"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@livesession/sdk": "^1.1.4",
"@mui/icons-material": "^5.14.0",
"@mui/material": "^5.14.0",
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest",
"@mui/styled-engine-sc": "^5.12.0",
"@storybook/addon-themes": "^8.0.8",
"@types/react-router-hash-link": "^2.4.9",
"@types/tabulator-tables": "^5.6.0",
"axios": "^1.4.0",
"dom-to-image": "^2.6.0",
"dotenv": "^16.4.5",
"easy-peasy": "^6.0.1",
"echarts": "^5.5.0",
"jspdf": "^2.5.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-csv": "^2.2.2",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.4",
"react-router-dom": "^6.14.1",
"react-router-hash-link": "^2.4.3",
"react-scripts": "5.0.1",
"react-use": "^17.4.0",
"styled-components": "^6.0.3",
"tabulator-tables": "^6.2.1",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1",
"@storybook/addon-essentials": "^8.0.8",
"@storybook/addon-interactions": "^8.0.8",
"@storybook/addon-links": "^8.0.8",
"@storybook/addon-onboarding": "^8.0.8",
"@storybook/blocks": "^8.0.8",
"@storybook/preset-create-react-app": "^8.0.8",
"@storybook/react": "^8.0.8",
"@storybook/react-webpack5": "^8.0.8",
"@storybook/test": "^8.0.8",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/echarts": "^4.9.22",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.195",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-csv": "^1.1.6",
"@types/react-dom": "^18.0.0",
"@types/styled-components": "^5.1.26",
"babel-plugin-styled-components": "^2.1.4",
"cypress": "^13.12.0",
"eslint-plugin-storybook": "^0.8.0",
"prop-types": "^15.8.1",
"storybook": "^8.0.8",
"storybook-addon-remix-react-router": "^3.0.0",
"webpack": "^5.90.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"docker-dev": "react-scripts start",
"docker-staging": "cp -r /app/client/build /app/client/staging && tail -f /dev/null",
"docker-test": "cp -r /app/client/build /app/client/test && tail -f /dev/null",
"docker-prod": "cp -r /app/client/build /app/client/prod && tail -f /dev/null",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"e2e-ui": "npx cypress open",
"e2e": "npx cypress run"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:storybook/recommended"
],
"rules": {
"react-hooks/exhaustive-deps": 0,
"@typescript-eslint/no-unused-vars": 0
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"release": {
"branches": [
"main",
{
"name": "develop",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
}
}