-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.25 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
{
"name": "coreMyWasm",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:edgar0011/coremywasm.git",
"author": "martinweiser <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "BABEL_ENV=webpack webpack serve --mode=development",
"build:wasm": "wasm-pack build --target web",
"build": "BABEL_ENV=production NODE_ENV=production webpack --mode=production",
"start": "NODE_ENV=production babel-node server/index.js --presets @babel/preset-env"
},
"dependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.9",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"babel-loader": "^8.2.2",
"body-parser": "^1.19.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"core-js": "^3.15.2",
"cors": "^2.8.5",
"css-loader": "^6.2.0",
"express": "^4.17.1",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.1.0",
"sass": "^1.37.5",
"sass-loader": "^12.1.0",
"wasm-loader": "^1.3.0",
"webpack": "^5.49.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.0.0-beta.0",
"webpack-manifest-plugin": "^4.0.2"
}
}