-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.22 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
{
"name": "sveltekit-starter",
"version": "0.1.0",
"private": true,
"description": "Internet Computer SvelteKit starter application",
"keywords": [
"Internet Computer",
"Motoko",
"JavaScript",
"Canister",
"SvelteKit"
],
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"prebuild": "npm run generate",
"generate": "dfx generate && node ./update.types.mjs && npm run format"
},
"devDependencies": {
"@rollup/plugin-inject": "^5.0.2",
"@sveltejs/adapter-static": "^1.0.0-next.48",
"@sveltejs/kit": "next",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tsconfig/svelte": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"autoprefixer": "^10.4.13",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^4.0.0",
"postcss": "^8.4.21",
"postcss-load-config": "^4.0.1",
"prettier": "^2.6.2",
"prettier-plugin-motoko": "^0.2.3",
"prettier-plugin-organize-imports": "^3.2.0",
"prettier-plugin-svelte": "^2.7.0",
"sass": "^1.56.1",
"svelte": "^3.44.0",
"svelte-check": "^2.10.3",
"svelte-feathers": "^0.2.9",
"svelte-loading-spinners": "^0.3.4",
"svelte-preprocess": "^4.10.7",
"svelte-steps": "^2.4.1",
"tailwindcss": "^3.1.5",
"tslib": "^2.3.1",
"typescript": "^4.9.5",
"vite": "^4.0.0"
},
"type": "module",
"dependencies": {
"@dfinity/agent": "^0.15.1",
"@dfinity/principal": "^0.15.1",
"@dfinity/candid": "^0.15.1",
"@dfinity/auth-client": "^0.15.1",
"@dfinity/identity": "^0.15.1",
"@tailwindcss/forms": "^0.5.3",
"country-code-emoji": "^2.3.0",
"country-list": "^2.3.0",
"daisyui": "^2.47.0",
"qrcode": "^1.5.1",
"svelte-cryptoicon": "^0.16.1",
"svelte-feather-icons": "^4.0.0",
"svelte-forms": "^2.3.1",
"svelte-qrcode-image": "^1.0.0-rc.2"
}
}