-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
105 lines (105 loc) · 3.6 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "muse-training",
"version": "1.0.0",
"description": "a web based ear-training software supports Web MIDI",
"repository": "[email protected]:lipd/muse-training.git",
"author": "lipd <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@types/react-router-dom": "^5.1.7",
"@types/vexflow": "^3.0.0",
"@types/webmidi": "^2.0.4",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.1",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^32.0.1",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"glob": "^7.1.7",
"husky": ">=6",
"less": "^4.1.1",
"less-loader": "^9.0.0",
"lint-staged": ">=10",
"mini-css-extract-plugin": "^1.6.0",
"postcss": "^8.3.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^5.3.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.0",
"purgecss-webpack-plugin": "^4.0.3",
"react-refresh": "^0.10.0",
"sass": "^1.34.0",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-order": "^4.1.0",
"terser-webpack-plugin": "^5.1.3",
"typescript": "^4.3.2",
"typescript-plugin-css-modules": "^3.3.0",
"webpack": "^5.38.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"webpackbar": "^5.0.0-3"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack serve --config ./scripts/config/webpack.development.js",
"build": "cross-env NODE_ENV=production webpack --config ./scripts/config/webpack.production.js",
"lint": "yarn lint:eslint && yarn lint:stylelint",
"lint:eslint": "eslint -c .eslintrc.js --ext .ts,.tsx,.js,.jsx src",
"lint:stylelint": "stylelint --config .stylelintrc.js src/**/*.{less,css,scss}",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md}": "eslint --cache --fix",
"*.{css,less,scss}": "stylelint --fix"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.14.0",
"@tonaljs/chord-detect": "^4.5.1",
"@tonaljs/midi": "^4.5.1",
"classnames": "^2.3.1",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"html-webpack-plugin": "^5.3.1",
"immer": "^9.0.2",
"pitchfinder": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"tone": "^14.7.77",
"vexflow": "^3.0.9",
"webmidi": "^2.5.2"
},
"browserslist": [
">0.2%"
]
}