forked from renanrodrigo/agua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.44 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
{
"name": "agua",
"version": "1.0.0",
"description": "AGUA - Automatic Guesser on Unnecessary Automation",
"repository": {
"type": "git",
"url": "git+https://github.com/renanrodrigo/agua.git"
},
"author": "Renan Rodrigo Barbosa <renan@linuxmail.org>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"build": "webpack --mode production",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --color",
"prettier": "prettier --check \"./src/**/*.{js,jsx,ts,tsx}\"",
"prettier:fix": "prettier --write \"./src/**/*.{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"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^9.1.1",
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^10.4.5",
"@types/jest": "^26.0.8",
"@types/react-dom": "^17.0.0",
"@types/webpack": "^4.41.24",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"css-loader": "^5.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.0.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.0.7",
"jest": "^25.5.4",
"mini-css-extract-plugin": "^1.2.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"prettier": "^2.0.5",
"raw-loader": "^4.0.1",
"ts-jest": "^25.5.1",
"ts-loader": "^8.0.2",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^3.9.6",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@patternfly/react-core": "^4.157.2",
"@patternfly/react-icons": "^4.4.2",
"@types/react": "^16.9.44",
"@types/react-router": "^5.1.16",
"@types/react-router-dom": "^5.1.8",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"query-string": "^7.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
}
}