forked from dojonode/taiko-node-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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
{
"name": "@wolfderechter/taiko-node-dashboard",
"version": "1.2.2",
"private": true,
"type": "module",
"homepage": "https://dojonode.xyz",
"scripts": {
"start": "pnpm run dev",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "pnpm exec jest",
"prettier": "pnpm exec prettier '**/*.{ts,svelte}'",
"prettier:write": "pnpm run prettier -- --write",
"prettier:check": "pnpm run prettier -- --check",
"svelte:check": "npx svelte-check --ignore test-app",
"lint": "pnpm exec eslint './**/*.{ts,svelte}' --ignore-path .eslintignore",
"lint:fix": "pnpm exec eslint --fix './**/*.{ts,svelte}' --ignore-path .eslintignore",
"predeploy": "pnpm run build",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@tsconfig/svelte": "^5.0.2",
"autoprefixer": "^10.4.16",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"gh-pages": "^6.1.1",
"postcss": "^8.4.33",
"postcss-cli": "^10.1.0",
"postcss-loader": "^7.3.4",
"prettier": "3.0.3",
"rollup-plugin-polyfill-node": "^0.12.0",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"svelte-loader": "^3.1.9",
"svelte-preprocess": "^5.1.3",
"tailwindcss": "^3.4.1",
"ts-loader": "^9.5.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.11"
},
"dependencies": {
"buffer": "^6.0.3",
"canvas-confetti": "^1.9.2",
"simple-duration": "^1.1.0",
"svelte-spa-router": "^3.3.0",
"tw-colors": "^3.3.1",
"vite-plugin-pwa": "^0.17.4",
"web3": "^4.3.0"
}
}