forked from apibara/starknet-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "starknet-react",
"private": true,
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test --parallel",
"lint": "turbo run lint --parallel",
"lint:fix": "turbo run lint:fix --parallel",
"format": "turbo run format --parallel",
"clean": "turbo run clean --parallel",
"release": "pnpm build && pnpm changeset publish"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-syntax-flow": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@biomejs/biome": "^1.2.2",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/react": "^18.2.22",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"starknet": "5.25.0",
"turbo": "^1.10.14",
"typescript": "^4.9.5"
},
"dependencies": {
"@starknet-react/core": "workspace:^",
"get-starknet": "^3.0.1"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"packageManager": "[email protected]"
}