-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
110 lines (110 loc) · 3.08 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@ethereansos/interfaces-ui",
"version": "0.3.2",
"description": "",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist/*"
],
"scripts": {
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "rollup -c",
"build:dev": "rollup -c --watch",
"lint": "eslint src",
"lint:fix": "eslint --fix src"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"classnames": "^2.2.6",
"formik": "^2.2.9",
"react-color": "2.19.3",
"react-select": "^4.3.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.8",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"@ethereansos/interfaces-core": "0.3.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-image": "^2.0.5",
"@rollup/plugin-node-resolve": "^10.0.0",
"@storybook/addon-actions": "^6.1.8",
"@storybook/addon-essentials": "^6.1.5",
"@storybook/addon-links": "^6.1.5",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.1.5",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.2.2",
"@testing-library/react-hooks": "^3.4.2",
"@testing-library/user-event": "^12.1.10",
"babel-eslint": "^10.1.0",
"babel-loader": "8.1.0",
"eslint": "^7.11.00",
"eslint-config-prettier": "^6.14.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.8.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"ipfs-http-client": "50.1.2",
"jest": "^26.6.3",
"lint-staged": "^10.5.0",
"lodash": "^4.17.21",
"prettier": "^2.3.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"rollup": "^2.33.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-visualizer": "^4.2.0",
"sass": "^1.30.0",
"sass-loader": "^9.0.3",
"web3": "^1.3.0",
"web3-utils": "^1.4.0"
},
"peerDependencies": {
"@ethereansos/interfaces-core": "0.3.1",
"ipfs-http-client": "51.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"jest": {
"collectCoverage": false,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"post-merge": "npm i"
}
},
"lint-staged": {
"packages/**/src/**/*.{js,json,md}": [
"prettier --write",
"git add"
]
}
}