-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 839 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 839 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
{
"name": "codebeats",
"private": true,
"version": "1.0.0",
"description": "Transform your code into music - hear what your code sounds like",
"author": "chanzsam",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"deploy": "npm run build && cd dist && git init && git add -A && git commit -m 'deploy' && git branch -M gh-pages && git remote add origin https://github.com/chanzsam/CodeBeats.git && git push -f origin gh-pages"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tone": "^15.0.4",
"@monaco-editor/react": "^4.6.0"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "~5.6.2",
"vite": "^6.0.0"
}
}