forked from grame-cncm/faustide
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.66 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
{
"name": "fausteditorweb",
"version": "1.4.1",
"description": "Faust Editor",
"main": "src/index.ts",
"private": true,
"scripts": {
"prebuild": "node ./src/listEx.js",
"build": "webpack --mode development",
"serve": "luvi -p 8000 -n",
"serve-docs": "luvi -r docs -p 8001 -n",
"dist": "npm run prebuild && webpack --mode production",
"test-eslint": "eslint -c .eslintrc.json src",
"test-stylelint": "stylelint src/**/*.scss",
"test": "run-s -s test-eslint test-stylelint",
"publish": "rm -rf docs/* && git checkout docs/CNAME && cp -r dist/* docs",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grame-cncm/faustide.git"
},
"keywords": [
"Faust",
"WebAudio",
"WebAssembly"
],
"author": "Grame-CNCM",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/grame-cncm/faustide/issues"
},
"homepage": "https://github.com/grame-cncm/faustide#readme",
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.9",
"@fortawesome/fontawesome-free": "^5.15.3",
"@grame/faustwasm": "^0.3.1",
"@shren/faust-ui": "^1.1.9",
"@types/bootstrap": "^4.6.0",
"@types/jquery": "^3.5.5",
"@types/qrcode": "^1.4.0",
"@types/wavesurfer.js": "^3.3.2",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@zenfs/core": "^0.9.7",
"@zenfs/dom": "^0.2.6",
"babel-loader": "^9.1.0",
"bootstrap": "^4.6.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"directory-tree": "^2.2.7",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.26.0",
"file-loader": "^6.2.0",
"jquery": "^3.6.0",
"jszip": "^3.10.0",
"kissfft-js": "^0.1.8",
"luvi": "^5.2.0",
"monaco-editor": "^0.45.0",
"monaco-editor-webpack-plugin": "^7.0.1",
"monaco-vim": "^0.4.1",
"npm-run-all": "^4.1.5",
"popper.js": "^1.16.1",
"qrcode": "^1.5.1",
"sass": "^1.54.0",
"sass-loader": "^13.2.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"stylelint": "^16.4.0",
"stylelint-config-recommended": "^14.0.0",
"typescript": "^3.9.9",
"wav-encoder": "^1.3.0",
"wavesurfer.js": "^3.3.3",
"webmidi": "^2.5.2",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"window-function": "^2.1.0",
"workbox-webpack-plugin": "^6.5.4"
}
}