-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 893 Bytes
/
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
{
"name": "go-wasm",
"version": "1.0.0",
"description": "A basic application using Go with WASM and TypeScript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "webpack",
"bundle:watch": "webpack --watch",
"build:server": "tsc ./src/ts/server/*.ts --outDir dist --esModuleInterop",
"build": "npm run bundle && npm run build:server"
},
"author": "Makepad Developers <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.5",
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.42.0",
"file-loader": "^6.2.0",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"express": "^4.18.2"
}
}