This repository has been archived by the owner on Feb 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 197
/
package.json
63 lines (63 loc) · 1.84 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
{
"name": "react-music",
"version": "1.0.3",
"description": "Make beats with react",
"main": "lib",
"files": [
"lib",
"umd"
],
"scripts": {
"start": "webpack-dev-server --hot --inline --port 3000 --config webpack.config.dev.js --content-base public/",
"build": "babel src -d lib --copy-files",
"clean": "rimraf dist",
"clean-umd": "rimraf umd",
"dist": "npm run clean && webpack && cp -a public/. dist/",
"lint": "eslint src demo --fix",
"flow-check": "flow check",
"flow": "flow",
"umd": "npm run clean-umd && webpack --config webpack.config.umd.js"
},
"author": "Ken Wheeler",
"license": "MIT",
"repository": "https://github.com/FormidableLabs/react-music",
"dependencies": {
"audio-contour": "0.0.1",
"note-parser": "^2.0.0",
"prop-types": "^15.6.0",
"tunajs": "^0.4.5",
"uuid": "^2.0.2"
},
"peerDependencies": {
"react": "^15.2.1 || ^16.0.0-0",
"react-dom": "^15.2.1 || ^16.0.0-0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^3.3.1",
"eslint-config-formidable": "^1.0.1",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.2",
"flow-bin": "^0.31.1",
"json-loader": "^0.5.4",
"postcss-loader": "^0.10.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.0.0-beta.2",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.15.0"
},
"sideEffects": false
}