-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.33 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.33 KB
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
111
{
"name": "@enipx/react-tags-input",
"version": "1.0.3",
"description": "concise and efficient solution for adding tags input.⚡",
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"types": "dist/typescript/index.d.ts",
"repository": "https://github.com/enipx/web3-quick-connect",
"author": "enipx <progenipx@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@changesets/cli": "^2.26.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-interactions": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/builder-webpack4": "^6.5.15",
"@storybook/manager-webpack4": "^6.5.15",
"@storybook/react": "^6.5.15",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"babel-loader": "^8.3.0",
"babel-plugin-styled-components": "^2.1.1",
"cross-env": "^7.0.3",
"esbuild": "^0.16.12",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-universe": "^11.1.1",
"eslint-plugin-prettier": "^4.2.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.9.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-dts": "^5.1.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"styled-components": "^6.0.0-rc.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@rollup/plugin-alias": "^5.0.0",
"rollup-plugin-analyzer": "^4.0.0"
},
"scripts": {
"storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint \"**/*.{ts,tsx}\" --config .eslintrc --cache",
"build": "rollup -c",
"release": "yarn build && changeset publish"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss)$": "identity-obj-proxy"
},
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.ts"
]
},
"eslintConfig": {
"root": true,
"extends": [
"universe",
"universe/web",
"plugin:prettier/recommended"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"prettier": {
"tabWidth": 2,
"bracketSameLine": true,
"trailingComma": "es5",
"singleQuote": true,
"quoteProps": "consistent",
"endOfLine": "auto"
},
"prettierIgnore": [
"dist/"
]
}