-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
54
{
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^4.1.5",
"@astrojs/tailwind": "^5.1.4",
"@creit.tech/stellar-wallets-kit": "^1.4.1",
"@fontsource/manrope": "^5.1.1",
"@stellar/stellar-sdk": "^13.1.0",
"@types/ramda": "^0.30.2",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"astro": "^5.1.7",
"framer-motion": "^11.18.0",
"ramda": "^0.30.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"react-router-dom": "^7.1.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.10.6",
"@vitejs/plugin-basic-ssl": "^1.2.0",
"daisyui": "^4.12.23",
"dotenv": "^16.4.7",
"postcss": "^8.5.1",
"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:fix": "biome check --fix --unsafe ./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/*"
]
}