-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.21 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": "note-detector",
"version": "1.0.0",
"description": "To detect the notes you are playing on your instrument or from a file",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "webpack-serve --config=./webpack.config.js",
"build": "webpack --mode=production --config=./webpack.config.js",
"build:serve": "webpack --mode=production --config=./webpack.config.js && npm run deploy",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyunwang/note-detector.git"
},
"keywords": [],
"author": "Kang Yun Wang",
"license": "MIT",
"bugs": {
"url": "https://github.com/kyunwang/note-detector/issues"
},
"homepage": "https://github.com/kyunwang/note-detector#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"css-loader": "^1.0.0",
"dotenv": "^6.0.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^3.2.0",
"preload-webpack-plugin": "^2.3.0",
"prettier": "^1.13.7",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8",
"webpack-serve": "^2.0.2"
},
"dependencies": {
"pitch-analyser": "1.1.0"
}
}