generated from beaker-project/dandelion
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.92 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
{
"name": "beaker-dashboard",
"version": "1.0.0",
"description": "Beaker NG Dashboard",
"repository": {
"type": "git",
"url": "git+https://github.com/beaker-project/dashboard.git"
},
"author": "Beaker Developers <[email protected]>",
"license": "GPLv2+",
"bugs": {
"url": "https://github.com/beaker-project/dashboard/issues"
},
"scripts": {
"start": "webpack serve --open --mode development",
"build": "webpack --mode production",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src __tests__ __mocks__ --color",
"prettier": "prettier --check \"./{src,__tests__,__mocks__}/**/*.{js,jsx,ts,tsx}\"",
"prettier:fix": "prettier --write \"./{src,__tests__,__mocks__}/**/*.{js,jsx,ts,tsx}\"",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run prettier && npm run lint && npm run test"
}
},
"homepage": "https://github.com/beaker-project/dashboard#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.9",
"@types/jest": "^26.0.8",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.5",
"@types/redux-mock-store": "^1.0.2",
"@types/webpack": "^4.41.26",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"css-loader": "^5.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.2",
"husky": "^4.3.6",
"jest": "^25.5.4",
"mini-css-extract-plugin": "^1.3.9",
"optimize-css-assets-webpack-plugin": "^6.0.0",
"prettier": "^2.0.5",
"raw-loader": "^4.0.2",
"redux-mock-store": "^1.5.4",
"redux-saga-test-plan": "^4.0.1",
"ts-jest": "^25.5.1",
"ts-loader": "^8.0.2",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^3.9.7",
"url-loader": "^4.1.1",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.1"
},
"dependencies": {
"@patternfly/react-core": "^4.106.2",
"@patternfly/react-icons": "^4.9.9",
"axios": "^0.21.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"typesafe-actions": "^5.1.0"
}
}