generated from NEARBuilders/project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
{
"name": "@efiz.near/profile",
"version": "0.0.1",
"homepage": "/",
"type": "module",
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"dev": "cat welcome.txt && rsbuild dev",
"build": "rsbuild build",
"preview": "rsbuild preview",
"fmt": "prettier --write '**/*.{js,jsx,ts,tsx,json}'",
"fmt:check": "prettier --check '**/*.{js,jsx,ts,tsx,json}'",
"deploy": "bun run --bun scripts/deploy.ts"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@types/ora": "^3.2.0",
"ora": "^8.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.3"
},
"devDependencies": {
"@module-federation/rsbuild-plugin": "^0.8.7",
"@rsbuild/core": "^1.2.3",
"@rsbuild/plugin-node-polyfill": "^1.2.0",
"@rsbuild/plugin-react": "^1.1.0",
"@tanstack/react-router": "^1.97.0",
"@tanstack/router-devtools": "^1.97.23",
"@tanstack/router-plugin": "^1.69.1",
"@types/node": "^20.11.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.16"
}
}