-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 2.01 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "johann",
"version": "1.4.2",
"description": "This is a new project that is aimed at helping personal guitar, musical keyboard or computer keyboard music practice. It originates from a personal requirement for being able to put together a chart of notes to practice. This could be for a scale/mode or a chord across the instrument. Basically it helps you focus on the notes you wanna play and practice. For instance on a musical keyboard, you may want to just highlight the C Minor scale so that you can play over it. This little app will let you select the required root note and the scale to generate this:",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npx webpack -d --watch",
"build": "npx webpack --config webpack.config.js",
"nuke": "rm -rf node_modules && rm package-lock.json",
"dev": "npx webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walmik/johann.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/walmik/johann/issues"
},
"homepage": "https://github.com/walmik/johann#readme",
"devDependencies": {
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"@types/react-loadable": "^5.5.4",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.13.1",
"less-loader": "^4.1.0",
"prettier": "^2.2.1",
"style-loader": "^0.23.0",
"ts-loader": "^5.3.1",
"typescript": "^3.9.7",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"preact": "^8.5.3",
"preact-compat": "^3.18.4",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-loadable": "^5.5.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^4.0.5",
"scribbletune": "^4.0.0-alpha"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2
}
}