forked from junobuild/juno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.15 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@junobuild/juno",
"version": "0.0.13",
"private": true,
"author": "David Dal Busco <david@fluster.io>",
"license": "SEE LICENSE IN LICENSE.md",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/buildwithjuno/juno"
},
"bugs": {
"url": "https://github.com/buildwithjuno/juno/issues"
},
"description": "An Open Source Blockchain-as-a-Service",
"keywords": [
"web3",
"dapps",
"Internet Computer",
"authentication",
"database",
"storage",
"cdn",
"hosting"
],
"scripts": {
"build:compress": "./scripts/build.compress.sh",
"build:csp": "node scripts/build.csp.mjs",
"build:post-process": "npm run build:csp && npm run build:compress",
"topup": "dfx wallet send rno2w-sqaaa-aaaaa-aaacq-cai 20000000000000",
"dev": "npm run i18n && vite dev",
"build": "tsc --noEmit && vite build && npm run build:post-process",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --no-tsconfig",
"check:watch": "svelte-kit sync && svelte-check --no-tsconfig --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"prebuild": "npm run generate",
"generate": "cargo test && dfx generate && node scripts/update.types.mjs && npm run copy:mjs && npm run format",
"copy:mjs": "cp src/declarations/console/console.factory.did.js src/declarations/console/console.factory.did.mjs && cp src/declarations/satellite/satellite.factory.did.js src/declarations/satellite/satellite.factory.did.mjs && cp src/declarations/observatory/observatory.factory.did.js src/declarations/observatory/observatory.factory.did.mjs",
"install:wasm": "node scripts/console.install-wasm.mjs",
"invitation": "node scripts/console.invitation.mjs",
"ledger:account-id": "node ./scripts/ledger.account-id.mjs",
"ledger:balance": "node scripts/ledger.balance.mjs",
"ledger:transfer": "node scripts/ledger.transfer.mjs",
"i18n": "node scripts/i18n.mjs && prettier --write ./src/frontend/src/lib/types/i18n.d.ts",
"observatory:statuses": "node scripts/observatory.statuses.mjs"
},
"devDependencies": {
"@dfinity/identity-secp256k1": "^0.15.6",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@rollup/plugin-inject": "^5.0.3",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.20.5",
"@types/prismjs": "^1.26.0",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"node-fetch": "^3.3.1",
"pem-file": "^1.0.1",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-svelte": "^2.10.1",
"sass": "^1.63.6",
"svelte": "^3.59.1",
"svelte-check": "^3.4.4",
"svelte-preprocess": "^5.0.4",
"tslib": "^2.6.0",
"typescript": "^5.1.3",
"vite": "^4.3.9"
},
"dependencies": {
"@dfinity/agent": "^0.15.6",
"@dfinity/auth-client": "^0.15.6",
"@dfinity/identity": "^0.15.6",
"@dfinity/ledger": "^0.0.10",
"@dfinity/principal": "^0.15.6",
"@junobuild/ledger": "^0.0.6",
"buffer": "^6.0.3",
"idb-keyval": "^6.2.1",
"semver": "^7.5.3"
}
}