-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.33 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
{
"name": "realisr-2",
"version": "1.0.0",
"description": "A massively improved second generation of Realisr",
"main": "src/index.jsx",
"scripts": {
"dev": "webpack serve --open --config webpack.dev.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build:wasm": "cargo build --target wasm32-unknown-unknown",
"build:bindgen": "wasm-bindgen target/wasm32-unknown-unknown/debug/realisr_2.wasm --out-dir build",
"build": "npm run build:wasm && npm run build:bindgen && webpack --config webpack.prod.js"
},
"keywords": [],
"author": "Andy Chamberlain <andychamberlainmusic@gmail.com>",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.5",
"@mui/material": "^5.2.6",
"buffer": "^6.0.3",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-p5-wrapper": "^3.0.2",
"sweetalert2": "^11.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@wasm-tool/wasm-pack-plugin": "^1.6.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"html-webpack-plugin": "^5.5.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.0",
"webpack-merge": "^5.8.0"
}
}