-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
141 lines (141 loc) · 4.19 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
135
136
137
138
139
140
141
{
"description": "Snow Today Webapp",
"name": "@nsidc/snow-today-webapp",
"version": "0.18.1",
"private": false,
"files": [
"dist"
],
"unpkg": "dist/bundle.min.js",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve",
"lint": "eslint src --ext .ts --ext .tsx",
"lint:cache": "eslint src --ext .ts --ext .tsx --cache",
"lint:fix": "eslint src --ext .ts --ext .tsx --fix",
"compile": "tsc --project tsconfig.json",
"compile:watch": "tsc --watch --project tsconfig.json",
"test": "node jest/scripts/test.js",
"test:debug": "node inspect jest/scripts/test.js"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@fontsource/roboto": "^4.5.7",
"@tanstack/query-core": "^5.18.0",
"@tanstack/react-query": "^4.2.1",
"bootstrap": "~4.5.3",
"colormap": "^2.3.2",
"date-fns": "^2.29.3",
"fast-deep-equal": "^3.1.3",
"highcharts": "^10.2.0",
"highcharts-react-official": "^3.1.0",
"jotai": "^2.6.3",
"jotai-devtools": "^0.7.1",
"jotai-tanstack-query": "^0.8.1 <0.8.2",
"lodash": "^4.17.21",
"ol": "^6.15.1",
"react": "^18.2.0",
"react-bootstrap": "~1.6.5",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"react-icons": "^4.4.0",
"wonka": "^6.3.4"
},
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@tanstack/react-query-devtools": "^4.0.10",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.2.1",
"@types/colormap": "^2.3.1",
"@types/jest": "^28.1.4",
"@types/lodash": "^4.14.184",
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"autoprefixer": "^10.4.7",
"babel-jest": "^29.7.0",
"css-loader": "^6.7.1",
"eslint": "^8.19.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.1.2",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.3",
"jest-watch-typeahead": "^2.0.0",
"mini-css-extract-plugin": "^2.6.1",
"mockdate": "^3.0.5",
"postcss": "^8.4.14",
"postcss-loader": "^7.0.0",
"react-app-polyfill": "^3.0.0",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.2.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"jest": {
"verbose": true,
"roots": [
"<rootDir>/src"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.d.ts"
],
"setupFiles": [
"react-app-polyfill/jsdom"
],
"setupFilesAfterEnv": [
"<rootDir>/jest/scripts/setupTests.ts"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
"<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}"
],
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(js|jsx|mjs|cjs|ts|tsx)$": "<rootDir>/jest/transforms/babelTransform.js",
"^.+\\.css$": "<rootDir>/jest/transforms/cssTransform.js",
"^(?!.*\\.(js|jsx|mjs|cjs|ts|tsx|css|json)$)": "<rootDir>/jest/transforms/fileTransform.js"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(ol))",
"^.+\\.module\\.(css|sass|scss)$"
],
"modulePaths": [],
"moduleFileExtensions": [
"web.js",
"js",
"web.ts",
"ts",
"web.tsx",
"tsx",
"json",
"web.jsx",
"jsx",
"node"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
],
"resetMocks": true
}
}