-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 860 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 860 Bytes
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
{
"name": "vimrc-builder",
"version": "1.0.0",
"dependencies": {
"react": "^17.0.1",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"deploy": "npx vercel"
},
"engines": {
"node": ">=24"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^25.0.1",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"vite": "^6.0.7",
"vitest": "^2.1.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,css}": [
"prettier --write"
]
}
}