-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 774 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 774 Bytes
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": "mintmoment",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "git clean -xdf node_modules",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +"
},
"engines": {
"bun": "1.x"
},
"packageManager": "bun@1.1.20",
"workspaces": {
"packages": [
"apps/*",
"services/*"
],
"nohoist": [
"**/cbw-sdk",
"**/cbw-sdk/**",
"**/wagmi",
"**/pino-pretty",
"**/wagmi/**",
"**/pino-pretty/**"
]
},
"dependencies": {
"fb": "^2.0.0",
"instagram-graph-api": "^7.0.0",
"react-insta-stories": "^2.7.0",
"simple-icons": "^13.14.1"
}
}