-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.16 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
45
46
47
48
49
50
{
"name": "audio-visualizer",
"private": true,
"version": "1.0.0",
"description": "Fully client-side audio visualizer",
"type": "module",
"author": "Brian Mitchell",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"src/**/*.{ts,tsx}\" && pretty-quick --staged",
"postinstall": "simple-git-hooks"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4"
},
"devDependencies": {
"@types/node": "^16.11.46",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.0",
"eslint": "^8.20.0",
"eslint-config-react-app": "^7.0.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"simple-git-hooks": "^2.8.0",
"typescript": "^4.7.4",
"vite": "^3.0.4"
},
"engines": {
"node": ">=16.16.0"
},
"simple-git-hooks": {
"pre-commit": "npm run lint"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"plugins": [
"jsx-a11y"
]
}
}