-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.21 KB
/
package.json
File metadata and controls
103 lines (103 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
{
"name": "fausteditorweb",
"version": "1.11.2",
"description": "Faust IDE",
"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",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "npx playwright test",
"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": "LGPL-2.1",
"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.15.7",
"@playwright/test": "^1.56.1",
"@shren/faust-ui": "^1.1.19",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@types/bootstrap": "^4.6.0",
"@types/jquery": "^3.5.5",
"@types/qrcode": "^1.4.0",
"@types/testing-library__jest-dom": "^5.14.9",
"@types/wavesurfer.js": "^3.3.2",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@vitest/coverage-v8": "^4.0.4",
"@zenfs/core": "1.2.9",
"@zenfs/dom": "1.0.3",
"babel-loader": "^9.1.0",
"bootstrap": "^4.6.2",
"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",
"fake-indexeddb": "^6.2.4",
"file-loader": "^6.2.0",
"jquery": "^3.7.1",
"jsdom": "^27.0.1",
"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",
"msw": "^2.11.6",
"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": "^4.9.5",
"vitest": "^4.0.4",
"wav-encoder": "^1.3.0",
"wavesurfer.js": "^3.3.3",
"web-audio-test-api": "^0.5.2",
"webmidi": "^2.5.2",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"whatwg-fetch": "^3.6.20",
"window-function": "^2.1.0",
"workbox-webpack-plugin": "^6.5.4"
}
}