-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
160 lines (160 loc) · 6.03 KB
/
package.json
File metadata and controls
160 lines (160 loc) · 6.03 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "web-ide",
"version": "0.1.0",
"type": "module",
"private": true,
"main": "public/electron.js",
"scripts": {
"start": "cross-env REACT_APP_DATABASE=DEV vite",
"start:prod": "cross-env REACT_APP_DATABASE=PROD vite",
"build": "cross-env NODE_ENV=production REACT_APP_DATABASE=PROD tsc && vite build",
"build:dev": "cross-env NODE_ENV=production REACT_APP_DATABASE=DEV tsc && vite build",
"test": "cross-env REACT_APP_DATABASE=DEV jest",
"lint": "prettier --write src/**/*.{js,jsx,ts,tsx}",
"lint:check": "eslint ./src",
"electron:dev": "concurrently \"BROWSER=none yarn start\" \"npx wait-on http-get://127.0.0.1:3000 && ELECTRON_IS_DEV=1 npx electron .\"",
"deploy": "./node_modules/.bin/firebase deploy -P default --token=$FIREBASE_TOKEN",
"deploy:dev": "./node_modules/.bin/firebase deploy -P develop --token=$FIREBASE_TOKEN",
"precommit-hook": "npm run lint:check",
"prepare": "husky"
},
"dependencies": {
"@csound/browser": "^7.0.0-beta.28",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@emotion/core": "^11.0.0",
"@emotion/css": "^11.13.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@hlolli/codemirror-lang-csound": "^1.0.0-alpha10",
"@mui/icons-material": "^6.2.0",
"@mui/material": "^6.2.0",
"@reduxjs/toolkit": "^2.5.0",
"@vitejs/plugin-react": "^4.3.4",
"connected-react-router": "^6.9.3",
"date-fns": "^4.1.0",
"firebase-functions": "^6.4.0",
"history": "5.3.0",
"mime": "^4.0.4",
"ramda": "^0.30.1",
"react": "^19.0.0",
"react-autosuggest": "^10.1.0",
"react-beautiful-dnd": "^13.1.1",
"react-beforeunload": "^2.6.0",
"react-color": "^2.19.3",
"react-debounce-input": "^3.3.0",
"react-dev-utils": "^12.0.1",
"react-dom": "^19.0.0",
"react-firebaseui": "^6.0.0",
"react-hotkeys": "^2.0.0",
"react-iframe-comm": "^1.2.2",
"react-loader-spinner": "^6.1.6",
"react-perfect-scrollbar": "^1.5.8",
"react-piano": "^3.1.3",
"react-poppop": "^1.5.0",
"react-redux": "^9.2.0",
"react-refresh": "^0.16.0",
"react-router": "^7.0.2",
"react-select": "^5.9.0",
"react-share": "^5.1.1",
"react-split-pane": "^0.1.92",
"react-use-storage": "^0.5.1",
"redux": "^5.0.1",
"redux-first-history": "^5.2.0",
"url": "^0.11.4",
"vite": "^6.0.3",
"vite-raw-plugin": "^1.0.2",
"vite-tsconfig-paths": "^5.1.4",
"wait-on": "^8.0.1"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/helper-builder-react-jsx": "^7.25.9",
"@babel/helper-builder-react-jsx-experimental": "^7.12.11",
"@babel/helper-regex": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@emotion/babel-preset-css-prop": "^11.12.0",
"@eslint/js": "^9.17.0",
"@sentry/browser": "^8.45.0",
"@testing-library/react": "^16.1.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@types/ramda": "^0.30.2",
"@types/react": "^19.0.1",
"@types/react-color": "^3.0.13",
"@types/react-dom": "^19.0.2",
"@types/react-onclickoutside": "^6.7.10",
"@types/react-redux": "^7.1.34",
"@types/throttle-debounce": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"array-move": "^4.0.0",
"autosuggest-highlight": "^3.3.4",
"babel-eslint": "10.1.0",
"babel-loader": "9.2.1",
"babel-plugin-named-asset-import": "^0.3.8",
"camelcase": "^8.0.0",
"codemirror": "^6.0.1",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"css-loader": "7.1.2",
"d3-scale": "^4.0.2",
"dom-to-image-more": "^3.5.0",
"dotenv": "16.4.7",
"dotenv-expand": "12.0.1",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"electron-is-dev": "^3.0.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unicorn": "^56.0.1",
"file-loader": "6.2.0",
"file-saver": "^2.0.5",
"firebase": "^11.1.0",
"fuse.js": "^7.0.0",
"globals": "^15.13.0",
"hex-rgb": "^5.0.0",
"husky": "^9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom-fourteen": "1.0.1",
"jest-fetch-mock": "^3.0.3",
"jest-watch-typeahead": "2.2.2",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"prettier": "^3.4.2",
"react-app-polyfill": "^3.0.0",
"react-redux-test-renderer": "^4.0.1",
"reselect": "^5.1.1",
"resolve": "1.22.9",
"stream-browserify": "^3.0.0",
"throttle-debounce": "^5.0.2",
"ts-jest": "^29.2.5",
"ts-pnp": "1.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"uuid": "^11.0.3",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-svgr": "^4.3.0"
},
"resolutions": {
"react-iframe-comm/react": "*",
"react-iframe-comm/react-dom": "*",
"@babel/plugin-syntax-class-static-block@^7.0": "7.14.5",
"@hlolli/react-codemirror/codemirror": "^6.0.1"
}
}