This repository was archived by the owner on Mar 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
105 lines (105 loc) · 3.78 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
{
"name": "jupyterhub_singleuser_profiles_ui",
"version": "0.1.0",
"description": "JupyterHub Spawner UI",
"author": "Red Hat",
"license": "ISC",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/red-hat-data-services/jupyterhub-singleuser-profiles"
},
"homepage": "https://github.com/red-hat-data-services/jupyterhub-singleuser-profiles/",
"bugs": {
"url": "https://github.com/red-hat-data-services/jupyterhub-singleuser-profiles/issues"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "run-s build:prod",
"postbuild": "mkdir -p templates; cp build/index.html templates/spawn.html; cp build/index.html templates/spawn_pending.html; cp build/admin.html templates/admin.html",
"build:analyze": "export _JSP_OUTPUT_ONLY=true; run-s build build:bundle-profile build:bundle-analyze",
"build:bundle-profile": "webpack --config ./config/webpack.prod.js --json ./bundle.stats.json",
"build:bundle-analyze": "webpack-bundle-analyzer ./bundle.stats.json",
"build:clean": "rimraf ./build",
"build:prod": "webpack --config ./config/webpack.prod.js",
"format": "prettier --write \"./**/*.ts\" \"./**/*.tsx\" \"./**/*.scss\"",
"start:dev": "webpack serve --hot --color --config ./config/webpack.dev.js",
"test": "run-s test:lint test:ci",
"test:ci": "export CI=true; jest --collectCoverage",
"test:clearCache": "jest --clearCache",
"test:dev": "run-s test:lint test:local",
"test:fix": "eslint --ext .json,.js,.ts,.jsx,.tsx ./src --fix",
"test:lint": "eslint --ext .json,.js,.ts,.jsx,.tsx ./src",
"test:local": "jest --watchAll",
"test:type-check": "tsc --noEmit"
},
"dependencies": {
"@patternfly/patternfly": "4.137.0",
"@patternfly/react-core": "4.123.0",
"@patternfly/react-icons": "4.9.2",
"@patternfly/react-styles": "4.8.2",
"@patternfly/react-table": "^4.27.13",
"@patternfly/react-tokens": "^4.10.2",
"classnames": "^2.2.6",
"compare-versions": "^3.6.0",
"dompurify": "^2.2.6",
"lodash-es": "^4.17.15",
"moment": "^2.29.2",
"node-gyp": "^7.1.2",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@types/enzyme": "^3.10.7",
"@types/jest": "^26.0.14",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^5.0.0",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"dotenv-webpack": "^6.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.11.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.1",
"html-webpack-plugin": "^4.5.0",
"imagemin": "^7.0.0",
"jest": "26.6.0",
"mini-css-extract-plugin": "^1.0.0",
"npm-run-all": "^4.1.5",
"null-loader": "^4.0.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"prettier": "^2.1.2",
"raw-loader": "^4.0.2",
"react-docgen-typescript-loader": "^3.7.2",
"react-router-dom": "^5.2.0",
"redux-mock-store": "^1.5.4",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"sass-loader": "^7.3.1",
"style-loader": "^2.0.0",
"svg-url-loader": "^6.0.0",
"terser-webpack-plugin": "^4.2.3",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.5",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"tslib": "^2.0.3",
"typescript": "^4.0.3",
"url-loader": "^4.1.1",
"webpack": "4.46.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
}
}