-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.62 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
{
"name": "autofillr",
"version": "1.2.2",
"private": true,
"description": "Automatically fill registration forms with consistently generated random data.",
"repository": "https://github.com/umutcanbolat/autofillr.git",
"license": "GPL-3.0-or-later",
"author": "umutcanbolat <[email protected]>",
"main": "index.js",
"scripts": {
"build": "npm-run-all clean build:ui copyContentScripts",
"build:ui": "react-scripts build",
"build:ui:watch": "cra-build-watch",
"commit": "git-cz",
"copyContentScripts": "cpy src/contentScripts/* build",
"copyContentScripts:watch": "chokidar src/contentScripts -c \"yarn copyContentScripts\" --initial",
"eject": "react-scripts eject",
"lint": "eslint --ext .js,.jsx src/",
"lint:fix": "eslint --ext .js,.jsx src/ --fix",
"start": "npm-run-all -p build:ui:watch copyContentScripts:watch",
"start:ui": "react-scripts start",
"test": "react-scripts test",
"ci:release": "release-it --ci",
"ci:release:dry": "yarn ci:release --dry-run",
"clean": "rimraf dist build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"antd": "^4.6.1",
"codice-fiscale-js": "^2.3.7",
"faker": "^5.1.0",
"personal-number-generator": "^1.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.3",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.11.5",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@release-it/bumper": "^2.0.0",
"@release-it/conventional-changelog": "^2.0.0",
"chokidar-cli": "^2.1.0",
"cpy-cli": "^3.1.1",
"cra-build-watch": "^3.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"git-cz": "^4.7.1",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"release-it": "^14.4.1",
"rimraf": "^3.0.2"
}
}