-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 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
48
{
"name": "blocks",
"version": "0.0.1",
"description": "An interactive ML-supported drum beat generator",
"author": "Jacob Zhang",
"license": "Apache-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jacbz/Blocks.git"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"serve": "webpack serve --open --config webpack.dev.js"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"@magenta/music": "^1.21.0",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"interactjs": "^1.10.11",
"mini-css-extract-plugin": "^1.6.0",
"sass": "^1.34.0",
"sass-loader": "^11.1.1",
"tone": "^14.7.77",
"ts-loader": "^9.2.2",
"typescript": "^4.2.4",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-merge": "^5.7.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"webpack-dev-server": "^3.11.2"
},
"prettier": {
"singleQuote": true,
"printWidth": 100,
"trailingComma": "none"
}
}