-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
119 lines (119 loc) · 2.68 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "camelot-wheel",
"version": "1.3.0",
"description": "Interactive Camelot Wheel for harmonic mixing",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/eslint ./src",
"dev": "./node_modules/.bin/webpack --mode development",
"dev:watch": "./node_modules/.bin/webpack --watch --mode development",
"prod": "./node_modules/.bin/webpack --mode production"
},
"keywords": [
"camelot wheel",
"harmonic mixing",
"key mixing",
"dj",
"production",
"music"
],
"author": "geeves",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"classnames": "^2.3.1",
"core-js": "3.22.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-inlinesvg": "0.8.4",
"react-svg-map": "^2.2.0",
"react-swipeable-views": "^0.14.0"
},
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.17.10",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-export-default-from": "7.16.7",
"@babel/plugin-transform-regenerator": "7.17.9",
"@babel/preset-env": "7.17.10",
"@babel/preset-react": "7.16.7",
"@svgr/cli": "^6.2.1",
"@svgr/core": "^6.2.1",
"@svgr/webpack": "^6.2.1",
"babel-core": "7.0.0-beta.3",
"babel-eslint": "^10.1.0",
"babel-jest": "28.1.0",
"babel-loader": "8.2.5",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-module-resolver": "4.1.0",
"clean-webpack-plugin": "4.0.0",
"css-loader": "^6.7.1",
"enzyme": "3.11.0",
"file-loader": "6.2.0",
"jest": "28.1.0",
"jest-dom": "4.0.0",
"less": "^4.1.2",
"less-loader": "10.2.0",
"lint-staged": "12.4.1",
"popper.js": "1.16.1",
"prettier": "2.6.2",
"prop-types": "^15.8.1",
"react-native-svg": "^12.3.0",
"react-test-renderer": "18.1.0",
"react-testing-library": "8.0.1",
"requirejs": "2.3.6",
"sass-loader": "12.6.0",
"scss-loader": "0.0.1",
"style-loader": "^3.3.1",
"svg-inline-loader": "^0.8.0",
"webpack": "5.72.1",
"webpack-cli": "4.9.2"
},
"babel": {
"plugins": [
"@babel/plugin-transform-regenerator",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-export-default-from",
[
"module-resolver",
{
"root": [
"./src"
],
"alias": {
"Components": "./src/components"
}
}
],
[
"inline-react-svg",
{
"svgo": {
"plugins": [
{
"removeAttrs": {
"attrs": "(data-name)"
}
},
{
"cleanupIDs": false
}
]
}
}
]
],
"presets": [
"@babel/preset-react",
[
"@babel/preset-env",
{}
]
],
"ignore": [
"node_modules/**/*"
]
}
}