-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 849 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 849 Bytes
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
{
"name": "web-key-finder",
"version": "0.1.0",
"description": "Musical Key Detection for the Web",
"author": "Doga Yuksel <hello@doga.dev>",
"license": "GPL-3.0-only",
"scripts": {
"build:wasm": "pnpm --filter key-finder-wasm build",
"build:wasm:release": "pnpm --filter key-finder-wasm build:release",
"clean:wasm": "pnpm --filter key-finder-wasm clean",
"build:web": "pnpm --filter key-finder-web build",
"serve": "pnpm --filter key-finder-web serve",
"docker:build": "docker buildx build . -t webkeyfinder",
"docker:start": "docker run -d -p 3000:3000 webkeyfinder",
"test:e2e": "cypress run"
},
"dependencies": {
"cypress": "13.15.2",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3"
},
"workspaces": [
"packages/*"
],
"packageManager": "pnpm@9.15.2"
}