-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1000 Bytes
/
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
{
"name": "chord-machine",
"version": "0.1.0",
"description": "Play chords",
"main": "webpack.config.js",
"scripts": {
"prestart": "webpack",
"start": "webpack-dev-server --content-base assets/"
},
"author": "Nick Morgan (@skilldrick)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/skilldrick/chordmachine.git"
},
"dependencies": {
"immutable": "^3.7.5",
"lodash": "^4.6.1",
"material-ui": "^0.15.0-alpha.1",
"react": "^0.14.0",
"react-dom": "^0.14.7",
"react-tap-event-plugin": "^0.2.2",
"sine": "^0.2.2"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-preset-react": "^6.3.13",
"file-loader": "^0.8.5",
"history": "^1.13.0",
"html-webpack-plugin": "^1.6.2",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
}
}