forked from sugarlabs/musicblocks-v4-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "musicblocks-v4-lib",
"version": "0.1.0",
"description": "The core of the new Music Blocks (v4) application",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/meganindya/musicblocks-v4-lib.git"
},
"keywords": [
"musicblocks"
],
"author": "Anindya Kundu <[email protected]> (https://github.com/meganindya/)",
"license": "AGPL-3.0",
"dependencies": {
"tone": "^14.7.58"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.13",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1"
},
"scripts": {
"build": "webpack",
"lint": "eslint src/**/*.ts",
"test": "jest --passWithNoTests",
"watch": "webpack --watch"
}
}