-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
89 lines (89 loc) · 2.81 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
{
"name": "sema",
"version": "0.9.0",
"repository": "https://github.com/mimic-sussex/sema",
"description": "Sema, a live coding language design and performance playground",
"author": "Francisco Bernardo <[email protected]> (http://frantic0.com)",
"contributors": [
"Chris Kiefer <[email protected]> (http://luuma.net)",
"Thor Magnusson <[email protected]> (http://www.ixi-audio.net)",
"Milo Beuzeval <[email protected]> (https://www.amalgah.net)"
],
"license": "MIT",
"engines": {
"node": ">=14.4.0 <15"
},
"scripts": {
"dev": "run-p routify rollup",
"dev:err": "run-p routify rollup 2>err.log 1>out.log",
"dev:nollup": "run-p routify nollup",
"dev-dynamic": "cross-env BUNDLING=dynamic npm run dev",
"build": "routify -b && rollup -c",
"serve": "spassr --port 5000 --ssr",
"export": "spank",
"rollup": "rollup -cw",
"nollup": "nollup -c --verbose",
"routify": "routify"
},
"devDependencies": {
"@auth0/auth0-spa-js": "^1.10.0",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-url": "^6.0.0",
"@rollup/plugin-wasm": "^5.1.2",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"del": "^5.1.0",
"esbuild": "^0.7.22",
"hosted-git-info": "^4.0.2",
"livereload": "git+https://github.com/mimic-sussex/node-livereload.git",
"nollup": "^0.13.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.15",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^14.0.0",
"postcss-nested": "^5.0.3",
"qrcode": "^1.5.0",
"rollup": "^2.18.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-dynamic-import-variables": "^1.1.0",
"rollup-plugin-glob-import": "^0.4.5",
"rollup-plugin-hot": "^0.0.31",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-svelte": "^5.2.3",
"rollup-plugin-svelte-hot": "^0.9.2",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-web-worker-loader": "^1.6.0",
"spassr": "^2.6.0",
"svelte": "^3.23.2",
"svelte-content-loader": "^1.1.3",
"svelte-grid": "^5.1.0",
"svelte-json-tree-auto": "^0.1.0",
"workbox-cli": "^6.1.5"
},
"routify": {
"extensions": "svelte,html,svx,md",
"dynamicImports": false
},
"dependencies": {
"@roxi/routify": "^2.18.0",
"@supabase/supabase-js": "^1.21.0",
"do-not-zip": "^1.0.0",
"dotenv": "^8.6.0",
"highlight.js": "^10.6.0",
"js-beautify": "^1.13.5",
"marked": "^2.0.0",
"nearley": "^2.20.1",
"rollup-plugin-workbox": "^6.1.1",
"sema-engine": "^0.1.4",
"supabase-ui-svelte": "https://github.com/mimic-sussex/supabase-ui-svelte",
"svelte-codemirror": "git+https://github.com/frantic0/svelte-codemirror.git",
"svelte-highlight": "^3.2.0",
"svelte-preprocess": "^4.0.9",
"webmidi": "^2.5.2"
}
}