-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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
{
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^4.0.0",
"@astrojs/tailwind": "^5.1.3",
"@creit.tech/stellar-wallets-kit": "^1.3.0",
"@fontsource/manrope": "^5.1.0",
"@stellar/stellar-sdk": "^13.0.0",
"@types/ramda": "^0.30.2",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.2",
"astro": "^5.0.3",
"framer-motion": "^11.13.1",
"ramda": "^0.30.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"react-router-dom": "^7.0.2",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.10.1",
"@vitejs/plugin-basic-ssl": "^1.2.0",
"daisyui": "^4.12.14",
"dotenv": "^16.4.7",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"tsx": "^4.19.2"
},
"name": "sorobanathon",
"scripts": {
"astro": "astro",
"build": "astro check && astro build",
"dev": "astro dev",
"init": "node --import tsx scripts/initialize.ts",
"upgrade": "node --import tsx scripts/upgrade.ts",
"preview": "astro preview",
"start": "npm run init && astro dev",
"continue": "astro dev",
"lint": "biome check --write ./src",
"lint:check": "biome check ./src",
"format": "prettier --write \"**/*.{js,mjs,jsx,ts,tsx,json,graphql,css,astro,md}\"",
"format:check": "prettier --check \"**/*.{js,mjs,jsx,ts,tsx,json,graphql,css,astro,md}\""
},
"type": "module",
"version": "0.0.1",
"workspaces": [
"packages/*"
]
}