-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.33 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.33 KB
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
{
"$schema": "http://json.schemastore.org/package.json",
"name": "@xyo-network/xl1-samples-react",
"version": "1.0.0",
"description": "XYO Layer One Protocol Sample Code",
"homepage": "https://xyo.network",
"bugs": {
"url": "git+https://github.com/XYOracleNetwork/xl1-protocol-samples/issues",
"email": "support@xylabs.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XYOracleNetwork/xl1-protocol-samples.git"
},
"license": "LGPL-3.0-only",
"author": {
"name": "XY Labs Development Team",
"email": "support@xylabs.com",
"url": "https://xylabs.com"
},
"sideEffects": false,
"type": "module",
"scripts": {
"check-node-version": "node ./scripts/check-node-version.mjs",
"build": "npm run check-node-version && vite build --mode production",
"lint": "eslint",
"package-build": "npm run build",
"serve": "npm run build && npx serve ./build",
"start-cli": "npx xl1 --logLevel='warn'",
"start": "npx vite",
"updo": "npx npm-check-updates -i"
},
"dependencies": {
"@mui/material": "7.3.5",
"@xylabs/assert": "5.0.39",
"@xylabs/delay": "5.0.39",
"@xylabs/hex": "5.0.39",
"@xylabs/typeof": "5.0.39",
"@xyo-network/id-payload-plugin": "5.1.24",
"@xyo-network/payload-builder": "5.1.24",
"@xyo-network/react-chain-model": "1.16.23",
"@xyo-network/react-chain-provider": "1.16.23",
"@xyo-network/xl1-protocol": "1.13.13",
"@xyo-network/xl1-rpc": "1.16.23",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-router-dom": "~7.9.6"
},
"devDependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@types/react": "19.2.6",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react-swc": "4.2.2",
"@xylabs/eslint-config-flat": "7.2.8",
"@xylabs/tsconfig-react": "7.2.8",
"@xyo-network/xl1-cli": "^1.16.23",
"eslint": "9.39.1",
"eslint-import-resolver-typescript": "4.4.4",
"dotenv": "17.2.3",
"npm-check-updates": "19.1.2",
"rollbar": "~2.26.5",
"typescript": "5.9.3",
"serve": "14.2.5",
"vite": "7.2.2",
"vite-plugin-top-level-await": "1.6.0"
},
"engines": {
"node": ">=22.0.0 <23.0.0 || >=24.0.0 <25.0.0"
},
"volta": {
"node": "22.5.1",
"yarn": "4.9.2",
"npm": "10.9.2"
},
"publishConfig": {
"access": "restricted"
}
}