-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.72 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
{
"name": "strapi-plugin-eth",
"version": "0.0.4",
"description": "Integrate Ethereum in your Strapi application.",
"license": "MIT",
"files": [
"server",
"strapi-server.js"
],
"strapi": {
"name": "eth",
"displayName": "Ethereum",
"description": "Integrate Ethereum in your Strapi application.",
"kind": "plugin"
},
"repository": {
"type": "git",
"url": "https://github.com/shop3/strapi-plugin-eth.git"
},
"scripts": {
"release": "standard-version",
"lint": "eslint --fix .",
"lint:staged": "eslint --fix",
"format": "prettier --write .",
"husky:install": "husky install",
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit"
},
"dependencies": {
"ethers": "^5.5.1",
"siwe": "^2.1.3"
},
"peerDependencies": {
"@strapi/strapi": "^4.4.5"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"standard-version": "^9.5.0"
},
"author": {
"name": "Shop3",
"email": "[email protected]",
"url": "https://shop3.dev"
},
"maintainers": [
{
"name": "Shop3",
"email": "[email protected]",
"url": "https://shop3.dev"
}
],
"engines": {
"node": ">=12.x.x <=18.x.x",
"npm": ">=6.0.0"
},
"lint-staged": {
"*.(ts|tsx|js)": [
"npm run lint:staged"
]
}
}