-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
{
"name": "@react-midi/components",
"version": "0.0.4",
"description": "React components for working with midi",
"main": "./dist/bundle.js",
"scripts": {
"start": "webpack --watch --mode=development",
"build": "webpack --config webpack.config.prod.js --mode=production",
"prepublish": "npm run build"
},
"peerDependencies": {
"@react-midi/hooks": "^1.0.2",
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"keywords": [
"react-midi",
"react",
"midi",
"midi-components"
],
"author": "Nick Roberts",
"license": "ISC",
"dependencies": {
"styled-components": "^4.2.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.4.2",
"@react-midi/hooks": "^1.0.2",
"@types/node": "^12.12.14",
"@types/react": "^16.9.15",
"@types/styled-components": "^5.1.0",
"babel-loader": "^8.0.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-loader": "^6.2.1",
"typescript": "^3.7.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nickroberts404/react-midi-hooks.git"
},
"bugs": {
"url": "https://github.com/nickroberts404/react-midi-hooks/issues"
},
"homepage": "https://github.com/nickroberts404/react-midi-hooks#readme"
}