forked from notakamihe/REAW
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.97 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
{
"name": "reaw",
"version": "0.0.0",
"author": {
"name": "Michael Akamihe",
"email": "notakamihe@gmail.com",
"url": "https://github.com/notakamihe"
},
"description": "Digital Audio Workstation (DAW) made in React",
"repository": {
"type": "git",
"url": "git+https://github.com/notakamihe/REAW.git"
},
"private": true,
"main": "build/electron/main.js",
"scripts": {
"dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && nodemon\"",
"build": "tsc -b && vite build && tsc --project electron/tsconfig.json && electron-builder",
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.0.2",
"@mui/material": "^7.0.2",
"bootstrap": "^5.3.5",
"buffer": "^6.0.3",
"lodash": "^4.17.21",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "5.3.0",
"react-resize-detector": "^12.0.2",
"react-router-dom": "^7.5.2",
"styled-components": "^6.1.17",
"typescript": "^4.9.5",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/lodash": "^4.17.16",
"@types/node": "^22.15.3",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"electron": "^35.2.1",
"electron-builder": "^26.0.12",
"globals": "^16.0.0",
"nodemon": "^3.1.10",
"typescript": "~5.7.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.3.1",
"wait-on": "^8.0.3"
},
"build": {
"productName": "REAW",
"appId": "com.michaelakamihe.REAW",
"directories": {
"output": "dist"
},
"files": [
"build/**/*"
],
"extraMetadata": {
"main": "build/electron/main.js"
},
"extraResources": [
"src/assets/**/*"
],
"publish": {
"provider": "github",
"owner": "Michael Akamihe",
"repo": "reaw"
}
}
}