-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.45 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
{
"name": "dothum",
"private": true,
"repository": {
"type": "github",
"url": "https://github.com/seeker-3/dothum.git/"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"uninstall": "rm -rf **/node_modules",
"build:packages": "pnpm build -r --filter {./packages}",
"build:complementary-chords": "cd packages/complementary-chords && pnpm build",
"build:merge": "cd packages/merge && pnpm build",
"build:percussion": "cd packages/percussion && pnpm build",
"build:pitch-finder": "cd packages/pitch-finder && pnpm build",
"build:synth": "cd packages/synth && pnpm build",
"build:wasm": "wasm-pack build packages/wasm -s dothum --target web",
"clean:wasm": "rm -rf packages/wasm/pkg",
"clean": "pnpm clean -r",
"lint": "eslint .",
"lint:style": "stylelint **/*.*css",
"lint:style:fix": "stylelint **/*.*css --fix",
"format": "prettier -w ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.4",
"prettier": "^2.5.0",
"stylelint": "^14.1.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-standard-scss": "^3.0.0",
"typescript": "^4.5.2"
},
"dependencies": {
"eslint": "^8.3.0"
}
}