-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.08 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
{
"author": "Aaron Kriegman <[email protected]>",
"name": "liquid_go",
"version": "0.1.0",
"scripts": {
"build": "rimraf dist pkg && webpack",
"start": "rimraf dist pkg && webpack-dev-server ",
"dist": "npm run build && wasm-opt dist/*.wasm -o dist/*.wasm --strip-debug --dce -O3 && scp dist/* [email protected]:~/public_html/liquid_go",
"dist-server": "scp `find server -name node_modules -prune -o -type f -print` [email protected]:~/src/liquid_go/server",
"fmt": "deno fmt js server && cargo fmt"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@wasm-tool/wasm-pack-plugin": "1.6.0",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "10.1.0",
"eslint": "^8.5.0",
"eslint-plugin-react": "^7.28.0",
"rimraf": "3.0.2",
"webpack": "5.65.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.6.0"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"socket.io": "^4.4.0",
"socket.io-client": "^4.4.0"
}
}