-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
102 lines (102 loc) · 3.45 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
{
"name": "verida-one-webapp",
"description": "Frontend for the Verida One application",
"version": "1.0.0-beta.2",
"private": true,
"scripts": {
"clean:node_modules": "rm -rf node_modules/",
"clean:build": "rm -rf build/",
"clean": "yarn run clean:build && yarn run clean:node_modules",
"messages:extract": "formatjs extract 'src/**/*.ts*' --ignore src/**/*.d.ts* --out-file messages/en.json --id-interpolation-pattern '[sha512:contenthash:base64:6]'",
"messages:compile": "formatjs compile-folder --ast messages src/lib/lang/",
"format:check": "npx prettier src/ --check",
"format": "npx prettier src/ --write",
"lint:check": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint": "eslint src/ --fix --ext .js,.jsx,.ts,.tsx",
"check": "yarn run format:check && yarn run lint:check",
"fix": "yarn run format && yarn run lint",
"start": "yarn run messages:compile && react-app-rewired start",
"prebuild": "yarn run clean:build && yarn run messages:compile",
"build": "react-app-rewired build",
"build:profiler": "yarn run prebuild && react-scripts build --profile",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"test": "react-app-rewired test --passWithNoTests",
"eject": "react-scripts eject"
},
"dependencies": {
"@formatjs/cli": "^6.2.7",
"@icon-park/react": "^1.4.2",
"@tailwindcss/line-clamp": "^0.4.4",
"@tanstack/react-query": "^4.22.0",
"@tanstack/react-query-devtools": "^4.23.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^17.0.10",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"@verida/client-ts": "^3.0.2",
"@verida/types": "^3.0.0",
"@verida/web-helpers": "^3.1.2",
"autoprefixer": "^10.4.18",
"axios": "^1.6.8",
"bufferutil": "^4.0.8",
"crypto-browserify": "^3.12.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react": "^1.1.7",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-formatjs": "^4.12.2",
"eslint-plugin-functional": "^6.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"https-browserify": "^1.0.0",
"postcss": "^8.4.36",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"process": "^0.11.10",
"react": "^18.2.0",
"react-app-rewired": "^2.2.1",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-helmet-async": "^1.3.0",
"react-intl": "^6.6.2",
"react-qr-code": "^2.0.12",
"react-router-dom": "^6.22.3",
"react-scripts": "5.0.1",
"source-map-explorer": "^2.5.3",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tailwindcss": "^3.4.1",
"typescript": "^4.4.2",
"url": "^0.11.3",
"utf-8-validate": "^6.0.3",
"util": "^0.12.4",
"zod": "^3.22.4"
},
"devDependencies": {},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}