-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.65 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.65 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
80
81
82
83
84
85
86
87
{
"name": "web",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"libs/*",
"apps/*"
],
"scripts": {
"build": "nx build",
"build:wasm": "cd walletd && GOOS=js GOARCH=wasm go build -o ../apps/walletd/public/walletd.wasm ./wasm",
"clean": "bunx rimraf dist apps/*/node_modules libs/*/node_modules apps/*/.next .nx playwright-report && nx reset && bun i",
"release": "changeset publish",
"sort": "bunx sort-package-json && find apps libs -type f -name package.json -depth 2 -execdir bunx sort-package-json \\;",
"start": "nx serve",
"test": "nx test",
"version": "changeset version && bun install"
},
"dependencies": {
"next": "16.1.6",
"react": "19.2.1",
"react-dom": "19.2.1"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@eslint/compat": "^1.3.1",
"@eslint/eslintrc": "^3.3.1",
"@nx-tools/nx-container": "^6.8.0",
"@nx/devkit": "22.1.3",
"@nx/eslint": "22.1.3",
"@nx/eslint-plugin": "22.1.3",
"@nx/jest": "22.1.3",
"@nx/js": "22.1.3",
"@nx/next": "22.1.3",
"@nx/playwright": "22.1.3",
"@nx/react": "22.1.3",
"@nx/rollup": "22.1.3",
"@nx/workspace": "22.1.3",
"@playwright/test": "^1.58.2",
"@swc-node/register": "^1.10.10",
"@swc/cli": "^0.7.8",
"@swc/core": "^1.13.0",
"@swc/helpers": "0.5.17",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/carbon__icons-react": "^10.31.2",
"@types/jest": "^30.0.0",
"@types/node": "18.19.14",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.49.0",
"@typescript-eslint/parser": "8.49.0",
"autoprefixer": "10.4.21",
"babel-jest": "^30.2.0",
"eslint": "9.30.1",
"eslint-config-next": "16.0.7",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-playwright": "2.2.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"file-loader": "^6.2.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-fixed-jsdom": "^0.0.11",
"nx": "22.1.3",
"playwright": "^1.58.2",
"postcss": "8.4.38",
"prettier": "3.6.2",
"rimraf": "^6.0.1",
"rollup-plugin-preserve-directives": "^0.2.0",
"tailwindcss": "3.4.3",
"ts-jest": "^29.4.6",
"ts-node": "10.9.2",
"tslib": "^2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.49.0"
},
"packageManager": "bun@1.2.18",
"engines": {
"node": ">=22.12.0"
}
}