-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
95 lines (95 loc) · 3.06 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
95
{
"name": "io-808",
"version": "2.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 --config ./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 <[email protected]> (http://github.com/vincentriemer)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vincentriemer/io-808/issues"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.2",
"babel-loader": "8.0.6",
"babel-plugin-polyfill-corejs3": "^0.0.3",
"clean-css": "^4.2.1",
"copy-webpack-plugin": "^6.0.3",
"cross-env": "^5.2.0",
"css-loader": "^5.0.1",
"dart-sass": "^1.25.0",
"dotenv": "^8.2.0",
"eslint": "^6.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"fs-extra": "^0.30.0",
"html-loader": "^0.5.5",
"html-minifier": "^3.0.2",
"html-webpack-plugin": "^4.3.0",
"livereload": "^0.8.0",
"markdown-it": "^9.0.1",
"markdown-it-anchor": "^5.2.4",
"markdown-it-decorate": "^1.2.2",
"markdown-it-table-of-contents": "^0.4.4",
"markdown-it-video": "^0.6.3",
"mini-css-extract-plugin": "^1.3.3",
"node-watch": "^0.6.2",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"pug": "^2.0.4",
"pug-html-loader": "^1.1.5",
"pug-loader": "^2.4.0",
"resolve-url-loader": "^3.1.0",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^4.0.0",
"uncss": "^0.17.0",
"webpack": "^5.11.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^4.2.0",
"webpack-dev-middleware": "^4.0.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-plugin-replace": "^1.2.0",
"webpack-serve": "^3.2.0"
},
"dependencies": {
"@reach/auto-id": "^0.12.1",
"@vincentriemer/geometry-interfaces-polyfill": "^0.0.1",
"core-js": "^3.6.5",
"file-saver": "^2.0.2",
"immer": "^3.1.3",
"paths-js": "^0.4.9",
"prop-types": "^15.7.2",
"react": "file:vendor/react",
"react-dom": "file:vendor/react-dom",
"react-gui": "0.0.0-660062ed8",
"react-octicon": "^3.0.1",
"react-redux": "^7.1.0",
"redux": "^4.0.4",
"redux-persist": "^5.10.0",
"reselect": "^4.0.0",
"scheduler": "file:vendor/scheduler",
"waaclock": "^0.5.3"
}
}