-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.86 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.86 KB
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
{
"name": "invoice-generator",
"description": "Invoice generator",
"license": "MIT",
"version": "",
"private": true,
"scripts": {
"dev": "tsc && vite build --watch",
"format": "prettier --write .",
"lint": "eslint --ext .ts,.tsx .",
"lint:report": "eslint --ext .ts,.tsx --output-file eslint_report.json --format json .",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:webstorm": "vitest --watch --reporter=dot --reporter=json --outputFile=.vitest-result.json",
"build": "tsc && vite build",
"postinstall": "husky install",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"dependencies": {
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.8.3",
"date-fns": "^2.28.0",
"deepmerge-ts": "^4.2.1",
"jspdf": "^2.5.1",
"react": "^18.2.0",
"react-datepicker": "^4.8.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@peculiar/webcrypto": "^1.4.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/github": "^8.0.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/chrome": "^0.0.197",
"@types/jspdf": "^2.0.0",
"@types/node": "^17.0.42",
"@types/react": "^18.0.4",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@vitejs/plugin-react": "^1.3.2",
"@vitest/coverage-c8": "^0.23.4",
"@vitest/ui": "^0.23.4",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-vitest-globals": "^1.2.0",
"happy-dom": "^6.0.4",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"prettier": "^2.7.1",
"rollup-plugin-copy": "^3.4.0",
"sass": "^1.52.3",
"semantic-release": "^19.0.5",
"semantic-release-chrome": "^3.1.0",
"typescript": "^4.7.3",
"vite": "^2.9.12",
"vitest": "^0.23.4",
"vitest-dom": "^0.0.4"
},
"contributors": [
{
"name": "Riderman",
"url": "https://github.com/ridermansb"
},
{
"name": "silvioprog",
"email": "soliveira@securityscorecard.io"
},
{
"name": "Daniel Parisotto",
"email": "dhp_parisotto@hotmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/risoflora/invoice-generator.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=16.0.0"
}
}