-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 995 Bytes
/
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
{
"name": "example",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"start:backend": "node -r @swc-node/register src/backend/main.ts",
"lint": "yarn lint:prettier --check && yarn lint:eslint",
"lint:fix": "yarn lint:prettier --write && yarn lint:eslint --fix",
"lint:eslint": "eslint './src/**/*.{ts,tsx}'",
"lint:prettier": "yarn prettier './src/**/*.{ts,tsx}'"
},
"dependencies": {
"@fastify/cookie": "^7.2.0",
"@fastify/cors": "8.0.0",
"ethers": "5.5.1",
"fastify": "4.2.1",
"fastify-siwe": "workspace:*",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"siwe": "^1.1.6"
},
"devDependencies": {
"@swc-node/register": "^1.4.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"eslint": "^8.20.0",
"prettier": "^2.7.1",
"typescript": "^4.6.3",
"vite": "^2.9.5"
}
}