This repository has been archived by the owner on Oct 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.69 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
{
"name": "react-transaction-toasts",
"version": "1.4.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"author": "erdDEV team (https://erd.dev)",
"homepage": "https://elrondjs.erd.dev",
"license": "MIT",
"files": [
"dist",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"dependencies": {
"@emotion/react": "^11.1.1",
"@emotion/styled": "^11.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"elrondjs": "^2.3.1",
"emotion-styled-utils": "^2.3.2",
"lodash.get": "^4.4.2",
"react": "^17.0.1",
"react-toast-notifications": "^2.4.0"
},
"peerDependencies": {
"react": "^17.0.1"
},
"scripts": {
"build": "tsc && tsc -p tsconfig-esm.json",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"release": "semantic-release"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/lodash.get": "^4.4.6",
"@types/react-toast-notifications": "^2.4.0",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"husky": "^4.3.0",
"semantic-release": "^17.2.2",
"typescript": "^4.0.5"
}
}