This repository was archived by the owner on Aug 21, 2025. It is now read-only.
forked from Ericxgao/morphaweb-self
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 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
{
"name": "morphaweb",
"version": "1.0.0",
"source": "src/index.html",
"license": "MIT",
"scripts": {
"start": "yarn parcel",
"build": "yarn clean && parcel build --public-url ./",
"clean": "rm -rf dist/",
"deploy": "yarn build && gh-pages -d dist",
"generateVersion": "git describe --tags > assets/VERSION.txt",
"pretty": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json}\"",
"promote": "git checkout production && git rebase main && git push origin production && git checkout main",
"release": "./scripts/release.sh"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"targets": {
"default": {
"includeNodeModules": true
}
},
"devDependencies": {
"@parcel/transformer-inline-string": "2.15.2",
"autoprefixer": "^10.4.21",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.1",
"events": "^3.3.0",
"gh-pages": "^6.3.0",
"parcel": "^2.15.2",
"path-browserify": "^1.0.1",
"prettier": "3.5.3",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"vm-browserify": "^1.1.2"
},
"dependencies": {
"@fontsource/roboto-mono": "^5.2.6",
"crunker": "^2.4.0",
"essentia.js": "^0.1.3",
"file-saver": "^2.0.5",
"jszip": "^3.7.1",
"lodash": "^4.17.21",
"wavefile": "^11.0.0",
"wavesurfer.js": "^6.6"
}
}