-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.21 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.21 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
{
"name": "clara",
"version": "0.9.0",
"description": "Companion for Long-term Analyses of Rehearsal Attempts ",
"main": "index.js",
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"build-dev": "babel src --out-dir lib --source-maps inline",
"build:ldo": "ldo build --input src/.shapes --output src/.ldo",
"prepare": "husky install"
},
"proxy": "http://localhost:8000",
"author": "David M. Weigl, IWK, University of Music and Performing Arts Vienna",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.21.5",
"@eslint/js": "^9.32.0",
"@ldo/cli": "^1.0.0-alpha.32",
"@types/jsonld": "^1.5.15",
"@types/shexj": "^2.1.7",
"chai": "^3.5.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jsdom": "^8.1.0",
"lint-staged": "^16.1.2",
"mocha": "^7.1.1",
"prettier": "3.6.2",
"react-app-rewired": "^2.2.1",
"typescript-eslint": "^8.38.0"
},
"dependencies": {
"@inrupt/lit-generated-vocab-common": "^0.3.11",
"@inrupt/oidc-client-ext": "^2.4.1",
"@inrupt/solid-client": "^2.1.2",
"@inrupt/solid-client-authn-browser": "^2.4.1",
"@inrupt/vocab-solid-common": "^0.7.5",
"@ldo/ldo": "^1.0.0-alpha.32",
"@ldo/react": "^1.0.0-alpha.33",
"@ldo/solid": "^1.0.0-alpha.1",
"@ldo/solid-react": "^1.0.0-alpha.33",
"@lit-labs/react": "^2.0.0",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.4",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/redux-promise": "^0.5.29",
"axios": "^1.9.0",
"bootstrap": "^5.3.5",
"browserslist": "^4.11.0",
"buffer": "^6.0.3",
"create-react-app": "^4.0.3",
"crypto-browserify": "^3.12.0",
"dragselect": "^3.1.1",
"events": "^3.3.0",
"html-midi-player": "^1.5.0",
"http-proxy-middleware": "^3.0.3",
"meld-clients-core": "oerc-music/meld-clients-core#new-solid-auth-tooling",
"midimessage": "^1.0.5",
"process": "^0.11.10",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-bootstrap": "^2.10.8",
"react-dom": "^16.14.0",
"react-dropzone": "^14.2.3",
"react-icons": "^4.10.1",
"react-player": "^2.16.1",
"react-redux": "^7.2.0",
"react-router": "^6.4.3",
"react-router-dom": "^6.4.3",
"react-scripts": "^5.0.1",
"redux": "^4.0.5",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0",
"seedrandom": "^2.4.4",
"stop-runaway-react-effects": "^2.0.0",
"stream-browserify": "^3.0.0",
"swr": "^2.1.5",
"typescript": "^4.9.5",
"usehooks-ts": "^2.9.1",
"webmidi": "^3.1.12"
},
"overrides": {
"@magenta/music": {
"tone": "~14.7.58"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
}
}