-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 1.76 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
{
"name": "jupyterhub-fancy-profiles",
"version": "1.0.0",
"description": "Fancy profile selector for KubeSpawner",
"main": "index.js",
"author": "yuvipanda",
"license": "BSD-3-Clause",
"scripts": {
"webpack": "webpack",
"webpack:watch": "webpack --watch",
"test": "jest"
},
"dependencies": {
"@jupyterhub/binderhub-client": "0.4.0",
"configurable-http-proxy": "^4.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-select": "^5.7.4",
"xterm": "^5.1.0",
"xterm-addon-fit": "^0.8.0"
},
"babel": {
"presets": [
"@babel/preset-env",
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
],
"plugins": []
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.5",
"@testing-library/user-event": "^14.5.2",
"babel-jest": "^29.7.0",
"babel-loader": "^8.2.1",
"css-loader": "^6.7.3",
"eslint": "^8.49.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-unused-imports": "^3.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"react-test-renderer": "^18.3.1",
"style-loader": "^3.3.2",
"webpack": "^5.6.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"jest": {
"automock": false,
"testEnvironment": "jsdom",
"testMatch": [
"<rootDir>/src/**/*.test.js"
],
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
},
"setupFilesAfterEnv": [
"<rootDir>/setupTests.js"
]
}
}