-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 945 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": "braidapps",
"version": "0.0.0",
"description": "braidapps",
"main": "src\\main.js",
"author": {
"name": "Braid Technologies Ltd"
},
"scripts": {
"clean": "echo",
"build": "npm run compile && npm run pull",
"pull": "bash -c 'cp -v ../Studio/Boxer/dist/boxer.pack.js public/assets/js && cp -v ../Studio/WaterfallBrowser/dist/waterfall.pack.js public/assets/js'",
"compile": "npx esbuild src/main.js --outfile=public/assets/js/main.pack.js --bundle",
"local-server": "node ./local-web.js"
},
"devDependencies": {
"@azure/static-web-apps-cli": "^1.1.6",
"@types/node": "^18.x",
"esbuild": "^0.24.0",
"rimraf": "^6.0.1",
"typescript": "^4.0.0"
},
"dependencies": {
"@azure/functions": "^4.0.0",
"axios": "^1.6.8",
"express": "^4.18.2",
"qs": "^6.12.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2"
}
}