-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 880 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 880 Bytes
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
{
"type": "module",
"scripts": {
"start": "webpack-dev-server",
"build": "rm -rf ./dist && webpack --config webpack.config.cjs --mode=production",
"lint": "eslint *.ts **/*.ts",
"lint:fix": "eslint *.ts **/*.ts --fix",
"sync": "rsync -avh dist/ root@unique:/var/www/btcpos.cash/",
"deploy": "npm run build && npm run sync"
},
"dependencies": {
"lwk_wasm": "^0.13.1"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"ts-loader": "^9.5.4",
"typescript": "^5.3.0",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}