-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 KB
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
{
"name": "wavetable-synth",
"version": "0.0.1",
"repository": "https://github.com/looshi/wavetable-synth-2",
"description": "WaveTable Synth built with web audio api.",
"main": "index.js",
"scripts": {
"prebuild": "rimraf dist",
"dev": "webpack-dev-server",
"validate-webpack": "webpack configtest ./webpack.config.js",
"build": "webpack",
"start": "http-server --silent -c-1",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Looshi and Jordan",
"license": "MIT",
"dependencies": {
"axios": "^0.21.2",
"classnames": "^2.2.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"redux": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.0",
"babel-preset-es2016": "^6.24.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.2",
"event-emitter": "^0.3.4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.1",
"lodash": "^4.17.21",
"node-sass": "^8.0.0",
"query-string": "^4.3.1",
"react-modal": "^3.16.1",
"react-select": "^5.7.0",
"rimraf": "^2.5.4",
"sass-loader": "^13.2.0",
"standard": "^17.0.0",
"standard-loader": "^7.0.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"worker-loader": "^3.0.8"
}
}