-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.69 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "Koma",
"version": "0.9.1",
"description": "A simple sampler app",
"main": "dist/main/background.js",
"homepage": "https://moxus.org",
"license": "MIT",
"repository": {
"url": "https://github.com/moxuse/Koma.git"
},
"scripts": {
"dev": "concurrently --kill-others-on-fail -n=react,electron -c=green,blue \"npm run dev:react\" \"npm run copy\" \"npm run dev:electron\"",
"dev:react": "vite",
"dev:electron": "cross-env NODE_ENV=development node build/electron.js",
"build": "npm run build:react && npm run copy && npm run build:electron",
"build:react": "vite build",
"build:electron": "cross-env NODE_ENV=production node build/electron.js && electron-builder build --publish never",
"serve:react": "vite preview",
"copy": "cp -r assets dist",
"clean": "rm -rf dist",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "jest"
},
"author": "moxus.org",
"build": {
"productName": "Koma",
"appId": "org.moxus.koma",
"copyright": "All Rights Reserved, moxus.org",
"asar": false,
"mac": {
"target": "dmg",
"icon": "build/icons/mac/icon.icns"
},
"win": {
"icon": "build/icons/win/icon.ico"
},
"linux": {
"icon": "build/icons/png/512x512.png"
},
"extends": null,
"extraMetadata": {
"main": "dist/main/background.js"
},
"files": [
"node_modules",
"dist/main/**",
"dist/renderer/**",
"dist/assets/**",
"dist/font/**",
"dist/index.html"
]
},
"dependencies": {
"assert": "^2.0.0",
"constants": "^0.0.2",
"dgram": "^1.0.1",
"dotenv": "^14.3.2",
"electron-store": "^8.0.1",
"fs-extra": "^10.0.0",
"graceful-fs": "^4.2.8",
"immutable": "^4.0.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"osc-js": "github:moxuse/osc-js#support-char",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-persist-transform-immutable": "^5.0.0",
"redux-thunk": "^2.4.1",
"styled-components": "^5.3.3",
"supercolliderjs": "^1.0.1",
"use-debounce": "^7.0.1",
"util": "^0.12.4",
"wav-decoder": "^1.3.0",
"ws": "^8.4.0"
},
"devDependencies": {
"@types/electron-load-devtool": "^1.2.1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.3",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.throttle": "^4.1.6",
"@types/md5": "^2.3.1",
"@types/mini-css-extract-plugin": "^2.4.0",
"@types/node": "^16.11.10",
"@types/react": "^17.0.36",
"@types/react-dom": "^17.0.11",
"@types/redux-logger": "^3.0.9",
"@types/redux-persist": "^4.3.1",
"@types/styled-components": "^5.1.15",
"@types/webmidi": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vitejs/plugin-react": "^1.0.4",
"concurrently": "^6.3.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"electron": "^16.0.5",
"electron-builder": "^22.14.5",
"electron-connect": "^0.6.3",
"electron-load-devtool": "^1.2.0",
"electron-reload": "^2.0.0-alpha.1",
"esbuild": "^0.13.6",
"esbuild-copy-static-files": "^0.1.0",
"eslint": "^8.0.1",
"eslint-config-ali": "^12.2.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.4.3",
"mini-css-extract-plugin": "^2.4.5",
"process": "^0.11.10",
"rimraf": "^2.6.3",
"ts-jest": "^27.1.0",
"typescript": "^4.5.2",
"vite": "^2.6.7",
"vite-plugin-eslint": "^1.3.0"
}
}