-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.56 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
{
"name": "polytronome",
"version": "0.0.1",
"description": "A polyrhythmic metronome",
"main": "index.js",
"repository": "https://github.com/stevebma/polytronome",
"author": "Steven Bouma",
"license": "AGPL-3.0-or-later",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --color --progress",
"buildbabel": "BABEL_PLUGIN_ENV=production BABEL_DISABLE_CACHE=1 webpack --mode=production --color --progress",
"dev": "cross-env NODE_ENV=development webpack-dev-server --color --progress",
"lint": "eslint --ext .ts --ext .tsx ./src",
"prettier": "yarn lint --fix",
"start": "serve dist",
"test": "jest",
"tsc": "tsc --noEmit",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@mui/material": "^5.8.4",
"@reduxjs/toolkit": "^1.8.2",
"polished": "^4.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-redux": "^8.0.2",
"reselect": "^4.1.6",
"styled-components": "^5.3.5",
"tone": "14.7.77",
"use-double-click": "^1.0.5",
"usehooks-ts": "^2.5.4",
"vexflow": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-docs": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@types/jest": "^28.1.2",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-redux": "^7.1.24",
"@types/styled-components": "^5.1.25",
"@types/use-double-click": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"@yarnpkg/doctor": "3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-storybook": "^0.5.12",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"npm-check-updates": "^14.0.1",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"require-from-string": "^2.0.2",
"source-map-loader": "^4.0.0",
"storybook": "^6.5.9",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.3",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
},
"engines": {
"node": ">=18.4.0"
}
}