-
Notifications
You must be signed in to change notification settings - Fork 388
/
package.json
83 lines (83 loc) · 2.16 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
{
"name": "binderhub",
"description": "Frontend Interface for BinderHub",
"private": true,
"dependencies": {
"@fontsource/clear-sans": "^5.0.11",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"copy-to-clipboard": "^3.3.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"wouter": "^3.3.5",
"@xterm/xterm": "^5.5.0",
"@xterm/addon-fit": "^0.9.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.26.3",
"@types/react": "^19.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"configurable-http-proxy": "^4.6.2",
"@types/jest": "^29.5.5",
"@whatwg-node/fetch": "^0.9.17",
"autoprefixer": "^10.4.19",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.11.0",
"eslint": "^8.38.0",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-react": "^7.37.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.7.5",
"postcss-loader": "^8.1.1",
"sass": "^1.77.1",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.78.0",
"webpack-cli": "^5.0.1"
},
"workspaces": [
"js/packages/binderhub-client"
],
"scripts": {
"webpack": "webpack",
"webpack:watch": "webpack --watch",
"lint": "eslint binderhub/static/js js",
"test": "jest"
},
"jest": {
"testEnvironment": "jsdom",
"collectCoverage": true,
"coverageReporters": [
"text",
"cobertura"
],
"testPathIgnorePatterns": [
"spec.js"
],
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy",
"\\.scss$": "identity-obj-proxy",
"\\.ico$": "identity-obj-proxy"
},
"setupFilesAfterEnv": [
"<rootDir>/setupTests.js"
],
"transformIgnorePatterns": [
"/node_modules/(?!wouter)"
],
"transform": {
"\\.[jt]sx?$": "babel-jest"
}
}
}