-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
94 lines (94 loc) · 2.35 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
{
"name": "ipld-explorer",
"description": "Explore the Merkle Forest from the comfort of your browser",
"version": "1.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "vite",
"lint": "aegir lint",
"dep-check": "aegir dep-check",
"build": "vite build",
"serve": "vite preview",
"test": "run-s test:unit test:e2e",
"test:unit": "vitest run --environment=node",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test -c playwright.config.js",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"postinstall": "patch-package"
},
"dependencies": {
"i18next": "^23.15.2",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-chained-backend": "^4.6.2",
"i18next-http-backend": "^2.6.2",
"i18next-icu": "2.3.0",
"i18next-localstorage-backend": "^4.2.0",
"ipfs-css": "^1.3.0",
"ipld-explorer-components": "^8.1.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-i18next": "^15.0.2",
"tachyons": "^4.12.0"
},
"devDependencies": {
"@playwright/experimental-ct-react": "^1.34.3",
"@playwright/test": "^1.48.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "^2.1.3",
"aegir": "^44.1.2",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.1",
"jsdom": "^22.0.0",
"npm-run-all": "^4.1.5",
"p-defer": "^4.0.1",
"patch-package": "^6.5.1",
"puppeteer": "^2.0.0",
"vite": "^5.4.8",
"vite-plugin-static-copy": "^2.0.0",
"vitest": "^2.1.2"
},
"eslintConfig": {
"settings": {
"react": {
"version": "16.3"
}
},
"extends": [
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"ipfs"
],
"plugins": [
"react"
],
"parserOptions": {
"project": true,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
}
},
"browserslist": [
">0.2%",
"not ie <= 99",
"not android <= 4.4.4",
"not dead",
"not op_mini all"
],
"bundlesize": [
{
"path": "./build/static/js/*.js",
"maxSize": "600 kB"
},
{
"path": "./build/static/css/*.css",
"maxSize": "18 kB"
}
],
"homepage": "./"
}