-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.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
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
{
"name": "your-crypto-story",
"version": "0.0.1",
"private": true,
"description": "Internet Computer application",
"keywords": [
"Internet Computer",
"Canister",
"Rust",
"SvelteKit",
"JavaScript",
"TypeScript"
],
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"build:docker": "docker build -t my-pocket-ic-tests -f Dockerfile .",
"build:docker:mac": "docker buildx build --platform linux/amd64 --load -t my-pocket-ic-tests -f Dockerfile .",
"run:docker": "docker run my-pocket-ic-tests",
"build:podman": "podman build -t my-pocket-ic-tests -f DockerFile .",
"run:podman": "podman run my-pocket-ic-tests",
"test:pocket-ic": "cargo test --package my-pocket-ic-tests",
"test": "playwright test --project=chromium",
"test:card": "playwright test card.spec.ts --headed --project=chromium",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"prebuild": "npm run generate",
"generate": "dfx generate && node ./update.types.mjs && npm run format"
},
"devDependencies": {
"@playwright/test": "^1.45.3",
"@rollup/plugin-inject": "^5.0.5",
"@sveltejs/adapter-static": "^3.0.4",
"@sveltejs/kit": "next",
"@tailwindcss/typography": "^0.5.14",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.44.0",
"prettier": "^3.3.3",
"prettier-plugin-motoko": "^0.9.4",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.5",
"sass": "^1.78.0",
"svelte": "^4.2.19",
"svelte-check": "^4.0.2",
"svelte-preprocess": "^6.0.2",
"tailwindcss": "^3.4.9",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"vite": "^5.4.6"
},
"type": "module",
"dependencies": {
"@dfinity/agent": "^2.1.1",
"@dfinity/auth-client": "^2.1.1",
"@dfinity/candid": "^2.1.1",
"@dfinity/ledger-icrc": "^2.5.0",
"@dfinity/principal": "^2.1.1",
"@dfinity/utils": "^2.5.0",
"bits-ui": "^0.21.13",
"clsx": "^2.1.1",
"lucide-svelte": "^0.445.0",
"mode-watcher": "^0.4.1",
"svelte-sonner": "^0.3.28",
"tailwind-merge": "^2.5.2",
"tailwind-variants": "^0.2.1"
}
}