-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "base64-to-pdf",
"version": "1.0.0",
"description": "Decode base64 to PDF",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"deploy": "sh deploy.sh",
"dev": "vite",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@react95/core": "^6.0.4",
"@react95/icons": "^2.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-pdf": "^5.7.2",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/react-pdf": "^5.7.3",
"@types/styled-components": "^5.1.26",
"@types/xstyled__styled-components": "^1.19.2",
"@vitejs/plugin-react": "^2.2.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"typescript": "^4.8.4",
"vite": "^3.2.2"
}
}