forked from mark3labs/louper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.77 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
{
"scripts": {
"start": "vercel dev --listen 3000",
"build": "snowpack build",
"test": "web-test-runner \"src/**/*.test.ts\"",
"format": "npx prettier --write \"{,!(node_modules|public)/**/}*.{js,svelte}\"",
"snowpack:dev": "snowpack dev --open none --port ${PORT:-8080} # Use Vercel-specified port, or default to 8080",
"vercel:runAppDev": "pnpm run snowpack:dev # `vercel dev` runs this per Vercel project settings, sets $PORT env var"
},
"dependencies": {
"@slack/webhook": "^6.0.0",
"@snowpack/plugin-postcss": "^1.2.0",
"@supabase/supabase-js": "^1.8.0",
"@vercel/node": "^1.9.1",
"autoprefixer": "^9",
"axios": "^0.21.1",
"crawler": "^1.3.0",
"ethers": "^5.0.32",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"postcss": "^7",
"svelte": "^3.42.6",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.4",
"web3w": "^0.2.43",
"web3w-walletconnect-loader": "^0.2.1"
},
"devDependencies": {
"@now/build-utils": "^2.7.0",
"@snowpack/plugin-dotenv": "^2.0.5",
"@snowpack/plugin-svelte": "^3.5.0",
"@snowpack/plugin-typescript": "^1.2.0",
"@snowpack/web-test-runner-plugin": "^0.2.0",
"@testing-library/svelte": "^3.0.0",
"@types/chai": "^4.2.13",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.0",
"@types/snowpack-env": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@web/test-runner": "^0.12.0",
"chai": "^4.2.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-svelte3": "^3.1.2",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"snowpack": "^3.8.8",
"svelte-hmr": "^0.14.7",
"svelte-preprocess": "^4.0.8",
"typescript": "^4.0.0"
}
}