forked from vincentriemer/io-808
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.02 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "io-808",
"version": "1.0.0",
"description": "An attempt at a fully recreated web-based TR-808 drum machine.",
"sideEffects": false,
"scripts": {
"clean": "rimraf out",
"build:docs": "NODE_ENV=production node buildTutorial.js",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "yarn run clean && yarn run build:webpack && yarn run build:docs",
"test": "true",
"fmt": "prettier --write 'src/**/*.js'",
"start": "webpack-serve ./webpack.config.dev.js",
"tutorial-dev": "./tutorialDev.js",
"deploy": "./deploy-ghpages.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/vincentriemer/io-808.git"
},
"author": "Vincent Riemer <vincentriemer@gmail.com> (http://github.com/vincentriemer)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vincentriemer/io-808/issues"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.51",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-react": "^7.0.0-beta.51",
"autoprefixer": "^6.3.7",
"babel-loader": "8.0.0-beta.3",
"clean-css": "^3.4.19",
"cross-env": "^1.0.7",
"css-loader": "^0.28.11",
"favicons-webpack-plugin": "^0.0.9",
"file-loader": "^1.1.11",
"fs-extra": "^0.30.0",
"html-loader": "^0.5.5",
"html-minifier": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"livereload": "^0.5.0",
"markdown-it": "^7.0.0",
"markdown-it-anchor": "^2.5.0",
"markdown-it-decorate": "^1.2.1",
"markdown-it-table-of-contents": "^0.2.0",
"markdown-it-video": "^0.4.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"node-watch": "^0.4.0",
"offline-plugin": "^5.0.5",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"postcss-loader": "^2.1.5",
"prettier": "^1.13.6",
"pug": "^2.0.3",
"pug-html-loader": "^1.1.5",
"pug-loader": "^2.4.0",
"resolve-url-loader": "^2.3.0",
"rimraf": "^2.4.3",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"uncss": "^0.14.1",
"url-loader": "^1.0.1",
"webpack": "^4.12.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-command": "^0.3.0",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2",
"webpack-pwa-manifest": "^3.6.2",
"webpack-serve": "^1.0.4"
},
"dependencies": {
"bowser": "^1.4.3",
"core-js": "^2.5.7",
"file-saver": "^1.3.2",
"offline-plugin": "^5.0.5",
"paths-js": "^0.4.4",
"prop-types": "^15.6.2",
"radium": "^0.24.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-loadable": "^5.4.0",
"react-octicon": "^3.0.1",
"react-redux": "^5.0.7",
"redux": "^3.4.0",
"redux-localstorage": "^1.0.0-rc5",
"redux-localstorage-debounce": "^0.1.0",
"redux-localstorage-filter": "^0.1.1",
"reselect": "^2.5.3",
"seamless-immutable": "^6.1.1",
"waaclock": "^0.5.3"
}
}