-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
112 lines (112 loc) · 3.26 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
{
"name": "my-learning-analytics",
"version": "",
"description": "Providing data visualization",
"repository": "https://github.com/tl-its-umich-edu/my-learning-analytics",
"license": "Apache-2.0",
"dependencies": {
"@apollo/client": "3.8.8",
"@emotion/react": "11.11.3",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "5.15.3",
"@mui/material": "5.15.3",
"@tl-its-umich-edu/react-ga-onetrust-consent": "github:tl-its-umich-edu/react-ga-onetrust-consent#v1.0.0",
"clsx": "2.1.0",
"d3": "7.8.5",
"d3-v6-tip": "1.0.9",
"graphql": "16.8.1",
"js-cookie": "3.0.5",
"lodash.debounce": "4.0.8",
"lodash.isequal": "4.5.0",
"rc-slider": "10.5.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet": "6.1.0",
"react-router-dom": "6.25.1"
},
"babel": {
"presets": [
["@babel/preset-env",{"targets": {"esmodules": true}}],
["@babel/preset-react",{"runtime": "automatic"}]]
},
"scripts": {
"prod": "BABEL_ENV=production webpack --config webpack.config.js --mode production",
"build": "BABEL_ENV=development webpack --config webpack.config.js --mode development",
"watch": "BABEL_ENV=development webpack --config webpack.config.js --watch --mode development",
"test": "jest",
"test:watch": "jest --watchAll",
"update-snapshot": "jest --updateSnapshot"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.d.ts"
],
"setupFiles": [
"react-app-polyfill/jsdom"
],
"testMatch": [
"<rootDir>/assets/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
"<rootDir>/assets/src/**/?(*.)(spec|test).{js,jsx,ts,tsx}"
],
"testEnvironment": "jsdom",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/assets/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|ts|tsx|css|json)$)": "<rootDir>/assets/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$",
"^.+\\.module\\.(css|sass|scss)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web",
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"web.js",
"js",
"web.ts",
"ts",
"web.tsx",
"tsx",
"json",
"web.jsx",
"jsx",
"node"
],
"testPathIgnorePatterns": [
"testData"
]
},
"devDependencies": {
"@babel/cli": "7.23.4",
"@babel/core": "7.23.7",
"@babel/preset-env": "7.23.7",
"@babel/preset-react": "7.23.3",
"@babel/register": "7.23.7",
"all-contributors-cli": "6.26.1",
"babel-loader": "9.1.3",
"css-loader": "6.8.1",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "27.5.1",
"jest-resolve": "27.5.1",
"mini-css-extract-plugin": "2.7.6",
"react-app-polyfill": "3.0.0",
"react-test-renderer": "18.2.0",
"standard": "17.1.0",
"style-loader": "3.3.3",
"typeface-roboto": "1.1.13",
"url-loader": "4.1.1",
"webpack": "5.94.0",
"webpack-bundle-tracker": "3.0.0",
"webpack-cli": "5.1.4"
}
}