-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 961 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 961 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
36
37
38
39
40
41
{
"name": "taco-react-example",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "react-scripts build",
"check": "pnpm type-check && pnpm build",
"eject": "react-scripts eject",
"start": "react-scripts start",
"test": "react-scripts test",
"type-check": "tsc -p tsconfig.build.json"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@nucypher/shared": "workspace:*",
"@nucypher/taco": "workspace:*",
"@nucypher/taco-auth": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.5",
"react-scripts": "^5.0.1"
},
"peerDependencies": {
"ethers": "^5.7.2"
}
}