-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.81 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.81 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
85
86
87
88
{
"name": "image-builder-comparison-portfolio",
"version": "1.0.0",
"private": true,
"homepage": "https://kel222ea.github.io/ui-exercise",
"description": "Portfolio project comparing image-builder-frontend and image-builder-UX implementations",
"repository": {
"type": "git",
"url": "https://github.com/kelseamann/image-builder-comparison-portfolio.git"
},
"keywords": [
"patternfly",
"react",
"seed",
"starter"
],
"author": "Kelsea Mann",
"license": "MIT",
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "webpack serve --config webpack.dev.js",
"start:dev": "webpack serve --config webpack.dev.js",
"dev": "concurrently \"webpack serve --config webpack.dev.js\" \"echo 'Development server running'\"",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --ext .tsx,.ts ./src/",
"lint:fix": "eslint --ext .tsx,.ts --fix ./src/",
"type-check": "tsc --noEmit",
"prettier": "prettier --write './src/**/*.{js,jsx,ts,tsx,css,scss}'",
"prettier:check": "prettier --check './src/**/*.{js,jsx,ts,tsx,css,scss}'",
"serve:a11y": "serve -s dist -p 9000",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@kelseamann/semantic-ui-layer": "^1.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"concurrently": "^9.2.1",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"gh-pages": "^6.3.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jscodeshift": "^17.3.0",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.2.4",
"raw-loader": "^4.0.2",
"serve": "^14.2.4",
"style-loader": "^3.3.3",
"svg-url-loader": "^8.0.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@patternfly/react-core": "^5.4.1",
"@patternfly/react-icons": "^5.4.0",
"@patternfly/react-table": "^5.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"moduleNameMapping": {
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
}
}
}