-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
114 lines (114 loc) · 3.93 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "gerador-validador-cpf-root",
"homepage": "https://tiagoporto.github.io/gerador-validador-cpf",
"private": true,
"type": "module",
"engines": {
"node": ">=22",
"npm": "uses pnpm",
"pnpm": ">=9"
},
"packageManager": "[email protected]",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"start": "webpack serve",
"build": "rm -rf dist && webpack --config webpack.config.prod.mjs",
"checks": "pnpm check-docs && pnpm formatting:check && pnpm typecheck && pnpm lint:styles && pnpm lint",
"check-docs": "remark . --frail --ext md,markdown,mdx",
"formatting:check": "prettier --check --ignore-unknown \"**/*\"",
"formatting": "pnpm formatting:check --write",
"typecheck": "tsc --project tsconfig.json",
"lint:styles": "stylelint \"**/*.scss\"",
"lint": "eslint --max-warnings 0",
"lint:fix": "pnpm lint -- --fix",
"coverage": "npm test -- --coverage",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:package": "jest --config jest.config.package.mjs",
"test:mutation": "stryker run",
"test:e2e": "start-server-and-test start http-get://localhost:8080 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test start http-get://localhost:8080 'cypress open --e2e'"
},
"dependencies": {
"gerador-validador-cpf": "workspace:*",
"i18next": "^24.2.0",
"i18next-browser-languagedetector": "^8.0.2",
"i18next-http-backend": "^3.0.1",
"normalize.css": "^8.0.1",
"react": "^19.0.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^19.0.0",
"react-ga": "^3.3.1",
"react-github-corner": "^2.5.0",
"react-helmet-async": "^2.0.5",
"react-i18next": "^15.4.0",
"react-imask": "^7.6.1",
"react-syntax-highlighter": "^15.6.1",
"react-toastify": "^11.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@cypress/webpack-preprocessor": "^6.0.2",
"@jest/globals": "^29.7.0",
"@stryker-mutator/core": "^8.7.1",
"@stryker-mutator/jest-runner": "^8.7.1",
"@stryker-mutator/typescript-checker": "^8.7.1",
"@swc/core": "^1.10.4",
"@swc/jest": "^0.2.37",
"@tiagoporto/dependabot-config": "^1.2.0",
"@tiagoporto/editor-config": "^1.3.0",
"@tiagoporto/eslint-config": "^2.9.1",
"@tiagoporto/prettier-config": "^1.2.0",
"@tiagoporto/remark-config": "^1.6.0",
"@tiagoporto/stylelint-config": "^1.1.0",
"@types/jest": "^29.2.0",
"@types/node": "^22.10.5",
"@types/react": "^19.0.2",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^19.0.2",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/webpack-env": "^1.18.5",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.11.0",
"css-minimizer-webpack-plugin": "^7.0.0",
"cypress": "^13.17.0",
"eslint": "^9.17.0",
"eslint-plugin-cypress": "^4.1.0",
"globals": "^15.14.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-mock-random": "^1.1.1",
"lint-staged": "^15.3.0",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.1.3",
"prettier": "^3.4.2",
"remark": "^15.0.1",
"remark-cli": "^12.0.1",
"sass-embedded": "^1.83.0",
"sass-loader": "^16.0.4",
"start-server-and-test": "^2.0.9",
"style-loader": "^4.0.0",
"stylelint": "^16.12.0",
"swc-loader": "^0.2.6",
"typescript": "^5.7.2",
"typescript-plugin-css-modules": "^5.1.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"workbox-webpack-plugin": "^7.3.0"
},
"pnpm": {
"overrides": {
"eslint-plugin-markdown>eslint": ">=9",
"react-copy-to-clipboard>react": ">=19",
"react-ga>react": ">=19",
"react-helmet-async>react": ">=19",
"conventional-changelog-conventionalcommits": ">=8.0.0"
}
}
}