-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.34 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
40
{
"name": "deso-offline-tool",
"version": "1.1.1",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"pre-commit": "tsc --noEmit && prettier --write src && git add .",
"lint": "tsc --noEmit && prettier --check src",
"bundle": "esbuild src/ts/main.ts --bundle --minify --sourcemap --outfile=dist/main.js",
"tailwind": "tailwindcss -i src/style.css -o dist/style.css",
"build": "./build.sh",
"watch": "nodemon --watch src -e ts,css,html --exec \"npm run build\"",
"serve": "browser-sync start --server 'dist' --files 'dist/**/*.*'",
"start": "npm run build && concurrently \"npm run watch\" \"npm run serve\"",
"release": "git push origin main --tags",
"release:patch": "npm version patch && npm run release",
"release:minor": "npm version minor && npm run release",
"release:major": "npm version major && npm run release"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@tailwindcss/forms": "^0.5.6",
"browser-sync": "^2.29.3",
"concurrently": "^8.2.1",
"esbuild": "0.19.3",
"husky": "^8.0.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@scure/bip32": "^1.3.2",
"@scure/bip39": "^1.2.1",
"deso-protocol": "^2.5.0"
}
}