-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.29 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
{
"name": "@monerium/snap",
"version": "0.0.1",
"description": "Be your own bank.",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snap-template.git"
},
"license": "MIT",
"main": "dist/bundle.js",
"files": [
"dist/",
"images/",
"snap.manifest.json"
],
"scripts": {
"build": "mm-snap build -s src/snaps/index.ts -d dist -n bundle.js",
"build:clean": "yarn clean && yarn build",
"build:website": "next build",
"clean": "rimraf .next dist/*",
"dev": "next dev & yarn watch",
"lint": "next lint",
"lint:changelog": "yarn auto-changelog validate",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' --ignore-path .gitignore",
"serve": "mm-snap serve -r dist",
"start": "next start",
"test": "echo 'TODO'",
"todo:lint": "yarn lint:eslint && yarn lint:misc --check",
"watch": "mm-snap watch"
},
"dependencies": {
"bootstrap": "^5.2.0",
"next": "12.2.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@metamask/auto-changelog": "^2.5.0",
"@metamask/detect-provider": "^1.2.0",
"@metamask/eslint-config": "^9.0.0",
"@metamask/eslint-config-jest": "^9.0.0",
"@metamask/eslint-config-nodejs": "^9.0.0",
"@metamask/eslint-config-typescript": "^9.0.1",
"@metamask/snap-types": "^0.18.1",
"@metamask/snaps-cli": "^0.18.0",
"@types/node": "18.0.6",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"cookies": "^0.8.0",
"crypto-js": "^4.1.1",
"eslint": "8.20.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"ethers": "^5.6.9",
"jest": "^28.1.3",
"mkdirp": "^1.0.4",
"prettier": "^2.3.2",
"react-toast-notifications": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "4.7.4"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}