-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.79 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
{
"name": "widgets",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "cross-env PORT=3006 react-app-rewired start",
"dev": "npm run start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"lint": "eslint --ignore-path ./.gitignore --ext .js,.ts,.tsx . --fix",
"prettier": "prettier --write \"src/**/*.{ts,tsx}\"",
"link-cc": "node ./scripts/link-to-local-core-components.js",
"prepare": "husky install",
"postinstall": "npm run copy-zoid",
"copy-zoid": "shx mkdir -p public/scripts/zoid || true && shx cp -R node_modules/@krakenjs/zoid/dist/* public/scripts/zoid"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"lint-staged": {
"src/**/*.+(js|json|ts|tsx)": [
"npm run lint"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@bosonprotocol/react-kit": "^0.33.0",
"@krakenjs/zoid": "^10.3.3",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.16",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"cross-env": "^7.0.3",
"crypto-browserify": "^3.12.0",
"react": "^18.2.0",
"react-codecopy": "^5.0.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.9.0",
"react-scripts": "5.0.1",
"stream-browserify": "^3.0.0",
"styled-components": "^5.3.9",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@fleekhq/fleek-cli": "^0.1.8",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"assert": "^2.0.0",
"browserify-fs": "^1.0.0",
"buffer": "5.7.1",
"constants-browserify": "^1.0.0",
"customize-cra": "^1.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"path-browserify": "^1.0.1",
"prettier": "^2.8.8",
"react-app-rewired": "^2.2.1",
"shx": "^0.3.4"
}
}