-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "ReactPiano",
"version": "0.0.0",
"description": "A piano synthesizer written with React and the Web Audio API",
"keywords": [
"flux",
"react",
"web audio",
"web audio synthesizer",
"piano",
"webpack"
],
"main": "server.js",
"dependencies": {
"flux": "^3.0.0",
"keymirror": "^0.1.1",
"lodash": "^4.16.4",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.25.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"node-sass": "^3.10.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.0"
},
"scripts": {
"build": "NODE_ENV=production node_modules/.bin/webpack --progress -p --config ./webpack.dist.config.js",
"start": "node server.js"
},
"author": "Jessie Schalles",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/silenceonthelam/ReactPiano.git"
},
"bugs": {
"url": "https://github.com/silenceonthelam/ReactPiano/issues"
},
"homepage": "https://github.com/silenceonthelam/ReactPiano"
}