-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.01 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
{
"name": "hv-uikit-react",
"version": "0.1.0",
"description": "Example setup for React and TypeScript with Hitachi Vantara UI Kit",
"homepage": "https://github.com/pentaho/hv-uikit-adoption",
"license": "Apache-2.0",
"private": true,
"author": {
"name": "Hitachi Vantara UI Kit Team"
},
"repository": {
"type": "git",
"url": "https://github.com/pentaho/hv-uikit-adoption.git"
},
"scripts": {
"start": "webpack-dev-server --open --config=config/webpack/dev.js",
"build": "npm run clean && webpack -p --config=config/webpack/prod.js",
"test": "jest --coverage --config=config/tests/jest-config.json",
"test:watch": "jest --watch --config=config/tests/jest-config.json",
"prettier:fix": "prettier --write \"src/**/*.{json,js,jsx}\"",
"lint": "eslint . --ext .js,.jsx",
"clean": "rimraf build/*"
},
"dependencies": {
"@hv/uikit-react-core": "^1.23.0",
"@hv/uikit-react-icons": "^1.9.0",
"@hv/uikit-react-lab": "^1.17.5",
"@material-ui/core": "^3.0.0",
"connected-react-router": "^6.5.2",
"enzyme": "^3.10.0",
"history": "^4.10.1",
"i18next": "^19.0.1",
"i18next-browser-languagedetector": "^4.0.1",
"i18next-xhr-backend": "^3.2.2",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-i18next": "^11.2.2",
"react-redux": "^7.1.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-test-renderer": "^16.10.2",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@svgr/webpack": "^4.3.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.2.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-license-header": "^0.2.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.9",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.8.2",
"webpack-merge": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|jsx)": [
"npm run lint"
]
}
}