-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.41 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
73
74
75
76
77
{
"name": "drum_machine",
"version": "0.0.1",
"description": "A drum machine for the web",
"main": "src/main.js",
"scripts": {
"bundle": "webpack",
"bundle_production": "NODE_ENV=production webpack -p --config ./webpack.production.config.js",
"lint": "eslint src",
"transpile_redux_ui": "cd node_modules/redux-ui && npm i && babel -d transpiled src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jneuendorf/drum_machine.git"
},
"keywords": [
"web",
"drumming",
"drum",
"machine",
"audio",
"tab",
"react",
"redux"
],
"author": "Jim Neuendorf",
"license": "MIT",
"bugs": {
"url": "https://github.com/jneuendorf/drum_machine/issues"
},
"homepage": "https://github.com/jneuendorf/drum_machine#readme",
"dependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"bulma": "^0.5.3",
"change-case": "^3.0.1",
"downloadjs": "^1.4.7",
"font-awesome": "^4.7.0",
"howler": "^2.0.4",
"immutable": "^3.8.1",
"immutable-sorted": "^0.2.3",
"jquery": "^3.2.1",
"lodash.takerightwhile": "^4.6.0",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-toggle": "^4.0.2",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"redux-ui": "git+https://github.com/jneuendorf/redux-ui.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.5",
"eslint": "^3.19.0",
"eslint-plugin-react": "^7.0.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"node-sass": "^4.5.3",
"resolve-url-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.6.2",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.0"
}
}