-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.4 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.4 KB
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
{
"name": "rubintv",
"version": "2.0.0",
"description": "Web app to display Butler datasets from various collated locations.",
"main": "webpack.config.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "webpack --progress --no-devtool",
"dev-build": "webpack --progress --mode development",
"watch": "webpack --watch --progress --mode development",
"test": "jest"
},
"author": "ugyballoons",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.29.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/calendar": "^0.1.4",
"@types/prop-types": "^15.7.15",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"babel-loader": "^10.0.0",
"calendar": "^0.1.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.2",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.23",
"eslint-plugin-tsc": "^2.0.0",
"globals": "^16.3.0",
"html-webpack-plugin": "^5.6.3",
"inspectpack": "^4.7.1",
"jest": "^30.0.2",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^30.0.2",
"jest-fetch-mock": "^3.0.3",
"mini-css-extract-plugin": "^2.9.2",
"postcss-loader": "^8.1.1",
"prettier": "^3.6.2",
"prettier-eslint": "^17.0.0-alpha.1",
"sass": "^1.89.2",
"sass-loader": "^16.0.5",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"fflate": "^0.8.2",
"node": "^24.2.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"reconnecting-websocket": "^4.4.0",
"uuid": "^11.1.0"
},
"jest": {
"setupFiles": [
"jest-canvas-mock"
],
"collectCoverage": true,
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
}
}
}