-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
58
59
60
61
62
{
"name": "out-of-tune",
"version": "0.0.0",
"description": "Melody Generator based on common parameters like Key Signature, Scale, Time Signature and other less common or custom parameters...",
"main": "index.js",
"homepage": "http://shengdaliu.github.io/out-of-tune",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"server": "nodemon index.js",
"react": "react-scripts start",
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"author": "Shengda Liu",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@testing-library/user-event": "^13.2.1",
"@tonaljs/modules": "^4.6.5",
"css-loader": "^6.2.0",
"midi-player-js": "^2.0.14",
"midi-writer-js": "^2.0.1",
"node-sass": "^6.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"sass-loader": "^12.1.0",
"tone": "^14.7.77",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-standard": "^5.0.0",
"gh-pages": "^3.2.3",
"nodemon": "^2.0.12",
"prettier": "2.4.0",
"prettier-eslint": "^13.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}