-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.43 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
43
44
45
46
{
"name": "ordinals_inscription_canister",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"setup": "npm i && dfx canister create backend && dfx generate backend && dfx deploy",
"start": "run-p frontend backend",
"frontend": "vite --host --port 3000",
"backend": "cargo-watch -q -C ./backend -s 'cd .. && dfx generate && dfx deploy backend -q -y'",
"build": "tsc && vite build",
"format": "prettier --write \"src/**/*.{json,js,jsx,ts,tsx,css,scss}\" && cargo fmt",
"proxy": "lcp --proxyUrl http://localhost:18443 --port 8000"
},
"dependencies": {
"@nextui-org/react": "^2.2.9",
"axios": "^1.6.7",
"bitcoin-core": "^4.1.0",
"bitcoin-core-ts": "^3.0.3",
"framer-motion": "^11.0.3",
"inherits": "^2.0.4",
"local-cors-proxy": "^1.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rpc-bitcoin": "^2.0.0",
"uint8array-extras": "^1.1.0"
},
"devDependencies": {
"@dfinity/agent": "^0.21.4",
"@dfinity/candid": "^0.21.4",
"@dfinity/principal": "^0.21.4",
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.17",
"dotenv": "^16.3.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"prettier": "^2.8.2",
"sass": "^1.57.1",
"tailwindcss": "^3.4.1",
"typescript": "^4.6.4",
"vite": "^3.2.0",
"vite-plugin-environment": "^1.1.3"
}
}