-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.81 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
{
"name": "address-book-app",
"version": "1.0.0",
"private": true,
"description": "Address book app",
"homepage": "https://vpellegrino.github.io/address-book-app",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode development --open --hot --config ./webpack.dev.js",
"build": "webpack --mode production --config ./webpack.prod.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"lint": "npm run lint:code && npm run lint:style",
"lint:fix": "npm run lint:code:fix && npm run lint:style:fix",
"lint:code": "eslint src/**/*.{ts,tsx} --quiet",
"lint:code:fix": "eslint src/**/*.{ts,tsx} --fix",
"lint:style": "stylelint src/**/*.scss",
"lint:style:fix": "stylelint src/**/*.scss --fix",
"test:jest": "jest --config=jest.config.js",
"test:jest:watch": "jest --config=jest.config.js --watch",
"test:jest:coverage": "jest --config=jest.config.js --coverage",
"prepare": "husky install"
},
"keywords": [
"webpack",
"react",
"typescript",
"javascript",
"jest",
"sass",
"lint"
],
"author": "vpellegrino",
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "29.4.0",
"@types/lodash.isempty": "4.4.9",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/react-router-dom": "5.3.3",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"css-loader": "6.7.3",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-css-modules": "2.11.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "^7.33.2",
"file-loader": "6.2.0",
"gh-pages": "6.1.1",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jest": "29.4.1",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^23.0.1",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "2.7.2",
"prettier": "2.8.3",
"react-test-renderer": "18.2.0",
"sass": "1.58.0",
"sass-loader": "13.2.0",
"source-map-loader": "4.0.1",
"style-loader": "3.3.1",
"stylelint": "^16.0.2",
"stylelint-config-standard": "^35.0.0",
"ts-jest": "29.0.5",
"ts-loader": "9.4.2",
"typescript": "4.9.5",
"webpack": "5.76.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1"
},
"dependencies": {
"@patternfly/react-core": "5.1.2",
"@patternfly/react-table": "5.1.2",
"history": "5.3.0",
"lodash.isempty": "4.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.8.0"
}
}