-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.55 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.55 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
{
"name": "note-app",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "webpack --watch --progress --config ./webpack/webpack.dev.js",
"build": "NODE_ENV=production webpack --progress --config ./webpack/webpack.prod.js",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"update:deps": "npx npm-check-updates --interactive --format group",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"prepare": "husky install && chmod ug+x .husky/*",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix"
},
"lint-staged": {
"**/*.(ts|tsx|js|json|svg|css)": [
"eslint",
"prettier --write"
]
},
"dependencies": {
"@tiptap/extension-image": "2.8.0",
"@tiptap/extension-link": "2.8.0",
"@tiptap/extension-underline": "2.8.0",
"@tiptap/react": "2.8.0",
"@tiptap/starter-kit": "2.8.0",
"clsx": "2.1.1",
"html-to-pdfmake": "2.5.13",
"lodash.debounce": "4.0.8",
"pdfmake": "0.2.14",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-dropzone": "14.2.3",
"tesseract.js": "^4.0.2"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/js": "^9.12.0",
"@svgr/webpack": "8.1.0",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
"@types/chrome": "0.0.277",
"@types/eslint__js": "^8.42.3",
"@types/html-to-pdfmake": "2.4.4",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@types/styled-components": "5.1.34",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.8.1",
"@vitejs/plugin-react": "4.3.2",
"autoprefixer": "10.4.20",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.1",
"eslint-plugin-react-hooks": "5.0.0",
"global-jsdom": "25.0.0",
"html-webpack-plugin": "5.6.0",
"husky": "9.1.6",
"jsdom": "25.0.1",
"lint-staged": "15.2.10",
"postcss-loader": "8.1.1",
"prettier": "3.3.3",
"semantic-release": "24.1.2",
"semantic-release-chrome": "3.2.0",
"style-loader": "4.0.0",
"tailwindcss": "3.4.13",
"ts-loader": "9.5.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1",
"vitest": "2.1.2",
"webpack": "5.95.0",
"webpack-cli": "5.1.4"
}
}