-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 966 Bytes
/
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
{
"name": "kiai-web",
"version": "0.4.0",
"type": "module",
"main": "dist/index.js",
"repository": "https://github.com/mediamonks/kiai-web.git",
"author": "Richard Heuser <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "npm run dev:ts",
"dev:ts": "tsc --watch",
"build": "npm run build:ts",
"build:ts": "tsc",
"prepare": "npm run build",
"lint": "npm-run-all lint:*",
"lint:es": "eslint src/**/*"
},
"devDependencies": {
"@mediamonks/eslint-config-base": "^2.0.0",
"@types/audiobuffer-to-wav": "^1.0.2",
"@types/lodash": "^4.14.175",
"@types/md5": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.5.4"
},
"dependencies": {
"audiobuffer-to-wav": "^1.0.0",
"axios": "^0.22.0",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"nanoid": "^3.1.31",
"pitchfinder": "^2.3.1"
},
"engines": {
"node": ">=14"
}
}