-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.62 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.62 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "neuron-ui",
"version": "0.202.1",
"private": true,
"author": {
"name": "Nervos Core Dev",
"email": "dev@nervos.org",
"url": "https://github.com/nervosnetwork/neuron"
},
"repository": {
"type": "git",
"url": "https://github.com/nervosnetwork/neuron"
},
"homepage": "./",
"main": "./build",
"license": "MIT",
"scripts": {
"start": "cross-env DISABLE_ESLINT_PLUGIN=true vite",
"lint": "eslint --fix --ext .tsx,.ts,.js src",
"test": "vitest --environment=jsdom --run --watch=false",
"build": "cross-env DISABLE_ESLINT_PLUGIN=true tsc && vite build",
"clean": "npx rimraf build",
"precommit": "lint-staged",
"storybook": "storybook dev -p 9009",
"build-storybook": "storybook build"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"lint-staged": {
".storybook/**/*.{js,cjs,mjs,jsx,ts,tsx}": [
"prettier --ignore-path ../../.prettierignore --write",
"eslint --fix",
"git add"
],
"src/**/*.{js,cjs,mjs,jsx,ts,tsx}": [
"prettier --ignore-path ../../.prettierignore --write",
"eslint --fix",
"git add"
],
"src/**/*.{css,scss}": [
"prettier --ignore-path ../../.prettierignore --write",
"git add"
]
},
"jest": {
"displayName": "UI Tests"
},
"dependencies": {
"@ckb-lumos/base": "0.23.0",
"@ckb-lumos/bi": "0.23.0",
"@ckb-lumos/codec": "0.23.0",
"@ckb-lumos/common-scripts": "0.23.0",
"@ckb-lumos/config-manager": "0.23.0",
"@ckb-lumos/hd": "0.23.0",
"@ckb-lumos/helpers": "0.23.0",
"@ckb-lumos/lumos": "0.23.0",
"@ckb-lumos/rpc": "0.23.0",
"canvg": "3.0.11",
"i18next": "23.7.11",
"immer": "9.0.21",
"jsqr": "1.4.0",
"office-ui-fabric-react": "7.204.1",
"qr.js": "0.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "13.5.0",
"react-router-dom": "6.21.1",
"react-transition-group": "4.4.5",
"sass": "1.69.5",
"tslib": "2.6.3"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@babel/preset-env": "7.27.2",
"@babel/preset-typescript": "7.27.1",
"@storybook/addon-actions": "8.6.14",
"@storybook/addon-essentials": "8.6.14",
"@storybook/addon-interactions": "8.6.14",
"@storybook/addon-links": "8.6.14",
"@storybook/builder-vite": "8.6.14",
"@storybook/node-logger": "7.6.20",
"@storybook/react": "8.6.14",
"@storybook/react-vite": "8.6.14",
"@storybook/testing-library": "0.2.2",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@types/enzyme": "3.10.19",
"@types/enzyme-adapter-react-16": "1.0.9",
"@types/node": "20.10.5",
"@types/react": "18.3.22",
"@types/react-dom": "18.3.7",
"@types/react-router-dom": "5.3.3",
"@types/styled-components": "5.1.34",
"@vitejs/plugin-react": "4.5.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.8.0",
"babel-jest": "25.5.1",
"electron": "36.8.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.8",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"jest-styled-components": "7.2.0",
"jsdom": "26.0.0",
"postcss-preset-env": "10.1.6",
"storybook": "8.6.15",
"storybook-addon-react-router-v6": "2.0.10",
"terser": "5.39.2",
"vite": "6.3.6",
"vite-plugin-commonjs": "0.10.4",
"vite-plugin-eslint": "1.8.1",
"vite-plugin-node-polyfills": "0.23.0",
"vite-plugin-svgr": "4.3.0",
"vitest": "3.0.8"
},
"resolutions": {
"react-i18next": "14.1.3"
}
}