-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.9 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.9 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
{
"name": "starknet_rivet",
"displayName": "Starknet Rivet",
"version": "1.2.0",
"version_name": "1.2.0",
"author": "SpaceShard",
"description": "Starknet Devnet Developer Wallet",
"type": "module",
"license": "MIT",
"keywords": [
"chrome-extension",
"react",
"vite",
"create-chrome-ext"
],
"engines": {
"node": ">=14.18.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"devnet": "bash ./starknet-run/starknet-run.sh --no-l1",
"preview": "vite preview",
"fmt": "prettier --write '**/*.{tsx,ts,json,css,scss,md}'",
"zip": "npm run build && node src/zip.js",
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"format": "prettier --log-level log --write \"**/*.{ts,js,md,yml,json}\"",
"test": "jest -i",
"test:watch": "jest --watch",
"test:coverage": "jest -i --coverage",
"prepare": "husky",
"docs:build": "cd www && GIT_REVISION_OVERRIDE=${npm_config_git_revision_override} npm run build",
"docs:build:version": "v=$(npm run info:version -s) && npm run docs:build --git-revision-override=${npm_config_git_revision_override=v$v}",
"info:version": "npm pkg get version | xargs"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"jest --bail --findRelatedTests"
]
},
"dependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.19",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@extend-chrome/messages": "^1.2.2",
"@fontsource/roboto": "^5.0.13",
"@hookform/resolvers": "^4.1.3",
"@mui/icons-material": "^5.15.16",
"@mui/material": "^5.15.16",
"@rollup/plugin-typescript": "^11.1.6",
"@starknet-react/chains": "^3.1.2",
"@starknet-react/core": "^3.7.2",
"@tanstack/react-query": "^5.66.9",
"@types/webextension-polyfill": "^0.10.7",
"chrome": "^0.1.0",
"decimal.js": "^10.5.0",
"get-starknet-core": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.54.2",
"react-router-dom": "^6.22.3",
"react18-json-view": "^0.2.9",
"starknet": "^6.24.1",
"starknet-types": "^0.0.5",
"webextension-polyfill": "^0.12.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/chrome": "^0.0.246",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react": "^4.1.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"gulp": "^4.0.2",
"gulp-zip": "^6.0.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.0.3",
"ts-jest": "^29.2.5",
"typescript": "^5.2.2",
"vite": "^4.4.11"
}
}