-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·46 lines (46 loc) · 1.36 KB
/
package.json
File metadata and controls
executable file
·46 lines (46 loc) · 1.36 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
{
"name": "markdown-html-converter",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"coverage": "npx vitest run --coverage",
"test": "vitest --watch=false",
"deploy": "npm run add-version && npm run build && gh-pages -d dist",
"add-version": "echo \"VITE_COMMIT_HASH=$(git rev-parse --short HEAD)\" > .env",
"format": "prettier --check 'src/**/*.{js,jsx}' 'tests/**/*.{js,jsx}'",
"format:fix": "prettier --write 'src/**/*.{js,jsx}' 'tests/**/*.{js,jsx}'"
},
"dependencies": {
"@testing-library/dom": "^10.4.0",
"crypto": "^1.0.1",
"crypto-browserify": "^3.12.1",
"marked": "^15.0.12",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.1",
"@babel/preset-react": "^7.27.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "^3.2.4",
"babel-jest": "^29.7.0",
"gh-pages": "^6.3.0",
"jest": "^29.7.0",
"jsdom": "^26.1.0",
"prettier": "^3.5.3",
"vite": "^6.3.4",
"vitest": "^3.1.2"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"homepage": "https://doctorlai.github.io/markdown-html-converter"
}