-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
54 lines (54 loc) · 1.75 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
{
"name": "tact-by-example",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "vite dev --host",
"tact-build": "node pre-tact-build.js && rimraf ./tact-output && tact --config ./tact.config.json && node post-tact-build.js",
"build": "vite build",
"preview": "vite preview --host",
"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 ."
},
"devDependencies": {
"@aws-crypto/sha256-js": "^4.0.0",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-static": "^2.0.0",
"@sveltejs/kit": "^1.5.0",
"@tact-lang/compiler": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"autoprefixer": "^10.4.12",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^4.0.0",
"postcss": "^8.4.18",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"sass": "^1.55.0",
"svelte": "^3.56.0",
"svelte-check": "3.0.0",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.3.1",
"typescript": "^4.9.3",
"vite": "^4.1.4"
},
"type": "module",
"dependencies": {
"@geoffcox/svelte-splitter": "^1.0.1",
"@svelteuidev/composables": "^0.10.0",
"@svelteuidev/core": "^0.10.0",
"@ton-community/sandbox": "^0.6.0",
"buffer": "^6.0.3",
"marked": "^4.2.12",
"postcss-load-config": "^4.0.1",
"rimraf": "^5.0.5",
"shiki": "^0.14.1",
"ton": "^13.4.1",
"ton-core": "^0.48.0",
"ton-crypto": "^3.2.0",
"vite-plugin-node-polyfills": "^0.7.0"
}
}