-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 3.57 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
128
129
130
131
132
133
134
{
"name": "meroedu",
"version": "0.0.0",
"repository": "https://github.com/k2glyph/meroedu",
"private": true,
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@lingui/react": "3.13.2",
"@mui/icons-material": "^5.5.1",
"@mui/lab": "^5.0.0-alpha.75",
"@mui/material": "^5.5.3",
"@mui/styles": "^5.5.3",
"@types/nprogress": "^0.2.0",
"chart.js": "2.9.4",
"clsx": "^1.1.1",
"dompurify": "2.3.5",
"marked": "4.0.12",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"react": "17.0.2",
"react-chartjs-2": "2.11.1",
"react-custom-scrollbars-2": "^4.4.0",
"react-dom": "17.0.2",
"react-helmet-async": "^1.2.3",
"react-router-dom": "^6.3.0",
"react-textarea-autosize": "8.3.3",
"react-toastify": "8.1.1"
},
"devDependencies": {
"@babel/core": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@cucumber/cucumber": "7.3.2",
"@faker-js/faker": "^6.1.1",
"@lingui/cli": "3.13.2",
"@lingui/loader": "3.13.2",
"@lingui/macro": "3.13.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@types/debug": "4.1.7",
"@types/dompurify": "2.3.3",
"@types/jsdom": "16.2.14",
"@types/lodash": "^4.14.181",
"@types/marked": "4.0.2",
"@types/node": "17.0.14",
"@types/numeral": "^2.0.2",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@types/react-textarea-autosize": "4.3.6",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"babel-jest": "27.4.6",
"babel-loader": "8.2.3",
"babel-plugin-macros": "3.1.0",
"css-loader": "6.6.0",
"esbuild": "0.14.18",
"esbuild-plugin-babel": "0.2.3",
"eslint": "8.8.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"fork-ts-checker-webpack-plugin": "7.0.0",
"isomorphic-fetch": "3.0.0",
"jest": "27.4.7",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "2.5.3",
"playwright": "1.17.2",
"prettier": "2.5.1",
"purgecss-webpack-plugin": "4.1.3",
"sass": "1.49.7",
"sass-loader": "12.4.0",
"styled-components": "^5.3.5",
"svg-sprite-loader": "6.0.11",
"svgo-loader": "3.0.0",
"typescript": "4.5.5",
"webpack": "5.68.0",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.9.2"
},
"lingui": {
"catalogs": [
{
"path": "<rootDir>/locale/{locale}/client",
"include": [
"<rootDir>"
]
}
],
"fallbackLocales": {
"default": "en"
},
"sourceLocale": "en",
"format": "minimal",
"locales": [
"en",
"pt-BR"
]
},
"browserslist": ">1%, not dead",
"jest": {
"testEnvironment": "jsdom",
"transform": {
".+\\.(tsx|ts)?$": "babel-jest"
},
"setupFilesAfterEnv": [
"<rootDir>/public/jest.setup.tsx"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|tsx|js|jsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {
".*\\.(png|scss|svg)$": "<rootDir>/public/jest.assets.ts",
"@meroedu/(.*)": "<rootDir>/public/$1",
"@locale/(.*)": "<rootDir>/locale/$1"
}
},
"engines": {
"npm": "8.x",
"node": "16.x || 17.x"
},
"scripts": {
"heroku-postbuild": "make build-ssr && make build-ui"
}
}