-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
72 lines (72 loc) · 2.38 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
64
65
66
67
68
69
70
71
72
{
"name": "tab-editor",
"version": "0.1.0",
"description": "Cool tab editor",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"start": "node server.js",
"demo": "npm run build && git checkout gh-pages && rm -f index.html bundle.js bundle.js.map && mv dist/* . && git add --all && git commit -m 'updated demo' && git push origin gh-pages && git checkout master",
"lint": "eslint src",
"fix": "eslint src --fix",
"format": "prettier --write \"**/**.js\"",
"flow": "flow check"
},
"repository": {
"type": "git",
"url": "https://github.com/calesce/tab-editor.git"
},
"author": "Cale Newman <newman.cale@gmail.com> (http://github.com/calesce)",
"license": "MIT",
"bugs": {
"url": "https://github.com/calesce/tab-editor/issues"
},
"homepage": "https://github.com/calesce/tab-editor",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "8.0.1",
"babel-loader": "7.1.2",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"babel-plugin-transform-react-inline-elements": "^6.8.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.9",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "0.28.7",
"eslint": "4.8.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-react": "7.4.0",
"express": "^4.13.4",
"flow-bin": "0.56.0",
"html-webpack-plugin": "^2.24.1",
"lodash-webpack-plugin": "^0.11.0",
"prettier": "1.7.4",
"react-hot-loader": "^3.1.1",
"redbox-react": "^1.5.0",
"rimraf": "^2.5.2",
"style-loader": "0.18.2",
"webpack": "3.6.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.14.0"
},
"dependencies": {
"aphrodite": "^1.1.0",
"lodash": "^4.17.2",
"react": "16.0",
"react-dom": "16.0",
"react-popover": "0.5.2",
"react-popover-fork": "^0.6.4",
"react-redux": "^5.0.1",
"react-select": "1.0.0-rc.10",
"redux": "^3.5.1",
"redux-undo": "^1.0.0-beta8",
"reselect": "3.0.1",
"soundfont-player": "^0.10.4",
"xmldoc": "^0.5.1"
}
}