forked from freeipa/freeipa-webui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.37 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
{
"name": "freeipa-webui",
"version": "0.1.0",
"homepage": ".",
"private": true,
"author": "",
"license": "GPL-3.0-or-later",
"dependencies": {
"@patternfly/patternfly": "^4.202.1",
"@patternfly/react-core": "^4.250.1",
"@patternfly/react-table": "^4.112.39",
"@reduxjs/toolkit": "^1.8.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.4",
"react-router-dom": "^6.3.0"
},
"scripts": {
"build": "webpack build --mode production --progress",
"start": "webpack build --watch --mode development",
"serve": "webpack serve --mode development",
"audit-ci": "audit-ci --config audit-ci.json",
"cypress": "cypress run",
"cypress:open": "cypress open",
"lint": "eslint --color src/",
"lint:fix": "eslint --fix src/",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-transform-typescript": "^7.18.10",
"@babel/preset-env": "^7.18.9",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.45",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"audit-ci": "^6.1.2",
"babel-loader": "^8.2.5",
"babel-plugin-module-resolver": "^5.0.0",
"css-loader": "^6.7.1",
"cypress": "^10.6.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.6.1",
"sass-loader": "^13.0.2",
"source-map-loader": "^4.0.0",
"ts-loader": "^9.3.1",
"tsconfig-paths": "^4.0.0",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.7.4",
"webpack": "^5.76.2",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"@badeball/cypress-cucumber-preprocessor": "^18.0.1",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.0"
},
"cypress-cucumber-preprocessor": {
"stepDefinitions": [
"tests/features/steps/*.{js,ts}"
]
}
}