forked from FormidableLabs/react-music
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "react-music",
"version": "0.0.1",
"description": "Make beats with react",
"main": "lib/index.js",
"scripts": {
"start": "webpack-dev-server --inline --port 3000 --config webpack.config.dev.js --content-base public/",
"build": "babel src -d lib --copy-files",
"clean": "rimraf dist",
"dist": "npm run clean && webpack && cp -a public/. dist/",
"lint": "eslint . --fix"
},
"author": "Ken Wheeler",
"license": "MIT",
"repository": "https://github.com/FormidableLabs/react-music",
"dependencies": {
"envelope-generator": "^3.0.0",
"note-parser": "^2.0.0",
"web-audio-scheduler": "^1.1.0"
},
"peerDependencies": {
"react": "^15.2.1",
"react-dom": "^15.2.1"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"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-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.2",
"json-loader": "^0.5.4",
"postcss-loader": "^0.10.1",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.15.0"
}
}