-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.6 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.6 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
{
"name": "open-audio-stack-site",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"check": "npm run format && npm run lint && npm run build",
"dev": "next dev --turbopack",
"dev:static": "serve ./out",
"format": "prettier . --write",
"lint": "next lint",
"start": "next start",
"test": "vitest run ./tests"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.2.0",
"@mui/material": "^7.1.0",
"@mui/material-nextjs": "^7.1.1",
"@open-audio-stack/core": "^0.1.50",
"ace-builds": "^1.42.0",
"next": "^15.5.15",
"react": "^19.0.0",
"react-ace": "^14.0.1",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"jsdom": "^26.1.0",
"prettier": "^3.5.3",
"serve": "^14.2.4",
"typescript": "^5",
"vitest": "^3.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-audio-stack/open-audio-stack-site.git"
},
"keywords": [
"audio",
"plugin",
"site",
"vst",
"daw",
"metadata",
"search"
],
"author": "kmturley",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/open-audio-stack/open-audio-stack-site/issues"
},
"homepage": "https://github.com/open-audio-stack/open-audio-stack-site#readme",
"engines": {
"node": ">=20"
}
}