-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.4 KB
/
package.json
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
{
"name": "Starknet Rivet",
"displayName": "starknet_rivet",
"version": "0.0.0",
"author": "Toni Tabak",
"description": "The Starknet wallet for developers",
"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"
},
"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",
"@mui/icons-material": "^5.15.16",
"@mui/material": "^5.15.16",
"@rollup/plugin-typescript": "^11.1.6",
"@starknet-react/chains": "^0.1.7",
"@starknet-react/core": "^2.8.3",
"@types/webextension-polyfill": "^0.10.7",
"chrome": "^0.1.0",
"get-starknet-core": "^3.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3",
"starknet-6": "npm:starknet@^6.9.0",
"starknet-types": "^0.0.5",
"webextension-polyfill": "^0.12.0"
},
"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"
}
}