-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.79 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
{
"author": "Mikhail Menshikov <[email protected]>",
"license": "UNLICENSED",
"name": "monodrone",
"version": "0.0.1a",
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/plugin-transform-react-jsx": "7.14.9",
"@babel/preset-env": "7.15.6",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "7.15.0",
"@hh.ru/babel-plugin-react-source": "0.3.1",
"@ixth/eslint-config-base": "^0.0.1-rc.4",
"@ixth/eslint-config-react": "^0.0.1-rc.4",
"@ixth/eslint-config-typescript": "^0.0.1-rc.4",
"@ixth/midi-utils": "0.0.1-rc.0",
"@ixth/wa-components": "0.0.1-rc.0",
"@reduxjs/toolkit": "1.6.1",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-interactions": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/builder-webpack5": "^6.5.15",
"@storybook/manager-webpack5": "^6.5.15",
"@storybook/react": "^6.5.15",
"@storybook/testing-library": "^0.0.13",
"@thi.ng/colored-noise": "^1.0.6",
"@types/core-js": "2.5.5",
"@types/react": "17",
"@types/react-dom": "17.0.9",
"@types/react-redux": "7.1.18",
"@types/webmidi": "2.0.6",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"@use-it/event-listener": "0.1.7",
"babel-loader": "8.2.5",
"browserslist": "4.17.1",
"clsx": "1.1.1",
"core-js": "3.18.0",
"css-loader": "6.7.1",
"eslint": "^8.31.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-import-resolver-webpack": "0.13.1",
"eslint-import-resolver-workspaces": "^1.2.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-storybook": "^0.6.10",
"html-webpack-partials-plugin": "0.8.0",
"html-webpack-plugin": "5.3.2",
"lint-staged": "^13.1.0",
"mini-css-extract-plugin": "2.3.0",
"prettier": "^2.8.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "7.2.5",
"redux": "4.1.1",
"source-map-loader": "^4.0.1",
"style-loader": "3.3.1",
"thread-loader": "3.0.4",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"build:packages": "npm run build --workspaces",
"build:stats": "webpack --config webpack.prod.js --progress --profile --json > stats.json",
"postinstall": "if [ -d .git ]; then git config core.hooksPath ./githooks; fi",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:packages": "npm run lint --workspaces",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"workspaces": [
"packages/wa-components",
"packages/midi-utils"
]
}