-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"name": "git-page-link-create",
"version": "1.0.0",
"description": "Static application for creating shareable links to HTML, Markdown, and CSV/XLS content",
"author": "Kauan Vidigal <@Vidigal-code>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"deploy": "next build && next export",
"start": "next start",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"test": "node --import tsx --test \"tests/**/*.test.ts\""
},
"dependencies": {
"jszip": "^3.10.1",
"mammoth": "^1.11.0",
"marked": "^15.0.7",
"next": "^15.1.7",
"pako": "^2.1.0",
"papaparse": "^5.5.3",
"qrcode": "^1.5.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"styled-components": "^6.3.11",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/node": "^22.13.4",
"@types/pako": "^2.0.4",
"@types/papaparse": "^5.5.2",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^9.20.1",
"eslint-config-next": "^15.1.7",
"tsx": "^4.21.0",
"typescript": "^5.7.3"
}
}