-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.35 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
41
42
{
"name": "payback",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && npm run compile:release && vite build",
"preview": "vite preview",
"compile": "npm run prettier:write && npm run compile:go && npm run compile:typescript",
"compile:release": "npm run compile:go && npm run compile:typescript",
"compile:typescript": "tsc",
"compile:go": "chmod +x build.sh && ./build.sh",
"lint": "eslint --max-warnings 0 .",
"testnet": "cp src/configs/testnet.json public/config.json",
"tsc": "tsc",
"prettier": "npx prettier src",
"prettier:write": "npm run prettier -- --write",
"prettier:check": "npm run prettier -- --check"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"eslint": "^9.14.0",
"eslint-plugin-solid": "^0.14.4",
"globals": "^15.12.0",
"prettier": "3.3.3",
"typescript": "^5.5.3",
"typescript-eslint": "^8.14.0",
"vite": "^5.4.8",
"vite-plugin-bundle-obfuscator": "^1.3.0",
"vite-plugin-mkcert": "^1.17.6",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-wasm": "^3.3.0"
},
"dependencies": {
"@types/node": "^22.7.8",
"@vulpemventures/secp256k1-zkp": "^3.2.1",
"iframe-resizer": "^5.3.2",
"liquidjs-lib": "^6.0.2-liquid.36",
"loglevel": "^1.9.2"
}
}