This repository was archived by the owner on Mar 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.34 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.34 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
{
"name": "flow-wallet",
"version": "2.9.3",
"description": "Flow Wallet monorepo",
"type": "module",
"private": true,
"scripts": {
"dev": "pnpm -F frw-extension build:dev",
"build": "pnpm -F frw-extension build:pro",
"test": "pnpm -r test",
"test:run": "pnpm -r test:run",
"test:e2e": "pnpm -r test:e2e",
"test:e2e:ui": "pnpm -r test:e2e:ui",
"lint": "eslint . && pnpm -r lint",
"lint:fix": "eslint --fix . && pnpm -r lint:fix",
"format": "prettier .",
"format:fix": "prettier --write .",
"prepare": "husky",
"storybook": "pnpm -F frw-extension storybook",
"build-storybook": "pnpm -F frw-extension build-storybook"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs}": "eslint --cache",
"*.{json,js,ts,jsx,tsx,html,md,mdx,mjs}": "prettier --write"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@metamask/eth-sig-util": "^8.2.0",
"@playwright/test": "^1.53.2",
"@storybook/addon-docs": "^9.0.16",
"@storybook/addon-onboarding": "^9.0.16",
"@storybook/addon-themes": "^9.0.16",
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
"@storybook/react-webpack5": "^9.0.16",
"@svgr/webpack": "^5.5.0",
"@types/chrome": "^0.0.281",
"@types/koa-compose": "^3.2.8",
"@types/lodash": "^4.17.20",
"@types/node": "^22.16.2",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"@vitest/coverage-v8": "3.2.4",
"@welldone-software/why-did-you-render": "^8.0.3",
"autoprefixer": "^10.4.21",
"chromatic": "^12.2.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"dotenv": "^16.6.1",
"dotenv-webpack": "^8.1.1",
"enquirer": "^2.4.1",
"eslint": "^9.30.1",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-storybook": "^9.0.16",
"eslint-plugin-unused-imports": "^4.1.4",
"file-loader": "^6.2.0",
"globals": "^15.15.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"i18next": "^24.2.3",
"jszip": "^3.10.1",
"lint-staged": "^16.1.2",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"pinst": "^3.0.0",
"postcss": "^8.5.6",
"postcss-custom-properties": "^14.0.6",
"postcss-import": "^16.1.1",
"postcss-loader": "^5.3.0",
"postcss-nested": "^7.0.2",
"prettier": "^3.6.2",
"react-devtools": "^6.1.5",
"react-i18next": "^15.6.0",
"rimraf": "^6.0.1",
"shelljs": "^0.8.5",
"sinon-chrome": "^3.0.1",
"storybook": "^9.0.16",
"storybook-addon-remix-react-router": "^5.0.0",
"style-loader": "^4.0.0",
"table": "^6.9.0",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0",
"typescript-transform-paths": "^3.5.5",
"url-loader": "^4.1.1",
"vitest": "^3.2.4",
"webpack": "^5.99.9",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.10.0",
"zip-dir": "^2.0.0"
},
"keywords": [],
"author": "",
"license": "LGPL-3.0-or-later",
"engines": {
"node": ">=22.11.0",
"pnpm": ">=9"
},
"packageManager": "pnpm@10.12.1"
}