-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
155 lines (155 loc) · 5.11 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "forestfire",
"version": "1.2.0",
"description": "Concord Consortium Forest Fire Model",
"main": "index.js",
"engines": {
"node": ">= 18",
"npm": ">= 9"
},
"jest": {
"testEnvironment": "jsdom",
"testEnvironmentOptions": {
"url": "https://forestfire.unexisting.url.com"
},
"setupFilesAfterEnv": [
"<rootDir>src/setupTests.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/cypress/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"src/utilities/test-utils.ts"
],
"moduleNameMapper": {
"\\.svg$": "<rootDir>/__mocks__/svgMock.js",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|sass|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"scripts": {
"start": "webpack serve",
"build": "npm-run-all lint:build clean build:webpack",
"build:webpack": "webpack --mode production --devtool false",
"clean": "rimraf dist",
"lint": "eslint \"./src/**/*.{js,jsx,ts,tsx}\" \"./cypress/**/*.{js,jsx,ts,tsx}\"",
"lint:build": "eslint -c \".eslintrc.build.js\" \"./src/**/*.{js,jsx,ts,tsx}\" \"./cypress/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"./src/**/*.{js,jsx,ts,tsx}\" \"./cypress/**/*.{js,jsx,ts,tsx}\"",
"lint:style": "eslint -c \".eslintrc.style.js\" \"./src/**/*.{js,jsx,ts,tsx}\" \"./cypress/**/*.{js,jsx,ts,tsx}\"",
"lint:style:fix": "eslint --fix -c \".eslintrc.style.js\" \"./src/**/*.{js,jsx,ts,tsx}\" \"./cypress/**/*.{js,jsx,ts,tsx}\"",
"test": "jest",
"test:all": "npm-run-all build test start",
"test:coverage": "jest --coverage",
"test:debug": "node --nolazy --inspect-brk ./node_modules/.bin/jest --runInBand --no-cache",
"test:watch": "jest --watch",
"test:coverage:watch": "jest --coverage --watch",
"test:cypress": "cypress run",
"test:cypress:open": "cypress open",
"test:full": "npm-run-all test test:cypress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/concord-consortium/forestfire.git"
},
"author": "Concord Consortium",
"license": "MIT",
"bugs": {
"url": "https://github.com/concord-consortium/forestfire/issues"
},
"homepage": "https://github.com/concord-consortium/forestfire#readme",
"devDependencies": {
"@cypress/code-coverage": "^3.12.24",
"@cypress/webpack-preprocessor": "^6.0.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@types/three": "^0.161.2",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"autoprefixer": "^10.4.17",
"babel-jest": "^29.7.0",
"css-loader": "^6.10.0",
"cypress": "13.6.4",
"eslint": "^8.56.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"identity-obj-proxy": "^3.0.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.8.0",
"npm-run-all": "^4.1.5",
"postcss-loader": "^8.1.0",
"rimraf": "^5.0.5",
"sass-loader": "^14.1.1",
"script-loader": "^0.7.2",
"style-loader": "^3.3.4",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2"
},
"dependencies": {
"@concord-consortium/lara-interactive-api": "^1.9.4",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"@react-three/drei": "^9.99.0",
"@react-three/fiber": "^8.15.16",
"@svgr/webpack": "^8.1.0",
"babel-core": "^6.26.3",
"chart.js": "^4.4.1",
"chartjs-plugin-annotation": "^3.0.1",
"clsx": "^2.1.0",
"eventemitter3": "^5.0.1",
"jest": "^29.7.0",
"jquery": "^3.7.1",
"mobx": "^6.12.0",
"mobx-react": "^9.1.0",
"patternomaly": "^1.3.2",
"query-string": "^8.2.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-circular-input": "^0.2.4",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
"sass": "^1.71.0",
"screenfull": "^6.0.2",
"shutterbug": "^1.5.0",
"three": "0.161.0",
"wait-on": "^7.2.0"
}
}