generated from NEARBuilders/project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.23 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "crosspost",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=18"
},
"scripts": {
"fmt": "prettier --write '**/*.{js,jsx,ts,tsx,json}'",
"fmt:check": "prettier --check '**/*.{js,jsx,ts,tsx,json}'",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "bunx playwright test",
"test:ui": "bunx playwright test --ui"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@near-js/providers": "^1.0.0",
"@near-wallet-selector/bitte-wallet": "^8.9.13",
"@near-wallet-selector/core": "^8.9.13",
"@near-wallet-selector/here-wallet": "^8.9.13",
"@near-wallet-selector/meteor-wallet": "^8.9.13",
"@near-wallet-selector/modal-ui": "^8.9.13",
"@near-wallet-selector/my-near-wallet": "^8.9.13",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-tooltip": "^1.1.6",
"@radix-ui/react-visually-hidden": "^1.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookie": "^1.0.2",
"date-fns": "^4.1.0",
"formidable": "^3.5.2",
"framer-motion": "^11.16.1",
"lodash": "^4.17.21",
"lucide-react": "^0.469.0",
"near-api-js": "^4.0.3",
"next": "14.2.13",
"posthog-js": "^1.205.0",
"react": "^18",
"react-beautiful-dnd": "^13.1.1",
"react-confetti": "^6.2.2",
"react-dom": "^18",
"react-markdown": "^9.0.3",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"twitter-api-v2": "^1.19.0"
},
"devDependencies": {
"@builddao/near-social-js": "1.1.0-beta.6",
"@tailwindcss/typography": "^0.5.16",
"autoprefixer": "^10.4.20",
"encoding": "^0.1.13",
"eslint": "^8",
"eslint-config-next": "14.2.13",
"pino-pretty": "^11.2.2",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17"
}
}