-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.52 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
{
"name": "tip-jar",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"hardhat": "hardhat --config hardhat.config.cjs",
"hardhat:compile": "npm run hardhat compile",
"hardhat:test": "npm run hardhat test",
"hardhat:deploy": "npm run hardhat run scripts/deploy.js -- --network localhost",
"hardhat:deploy:testnet": "npm run hardhat run scripts/deploy.js -- --network goerli"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"@skeletonlabs/skeleton": "^0.132.5",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-vercel": "^2.2.0",
"@sveltejs/kit": "^1.5.0",
"@tailwindcss/forms": "^0.5.3",
"autoprefixer": "^10.4.13",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.7.2",
"hardhat": "^2.12.7",
"postcss": "^8.4.21",
"prettier": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.2.3",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"tabler-icons-svelte": "^1.10.0",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.3",
"vite": "^4.0.0"
},
"type": "module"
}