-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.38 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
111
{
"name": "frontend",
"description": "Phonon Manager",
"version": "0.0.0",
"private": true,
"dependencies": {
"@chakra-ui/react": "^2.4.3",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@ionic/core": "^7.5.7",
"@ionic/react": "^7.5.7",
"@ionic/react-router": "^7.5.7",
"@ionic/react-test-utils": "^0.4.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@textea/json-viewer": "^3.2.3",
"@usedapp/core": "^1.2.2",
"bignumber.js": "^9.1.0",
"console.history": "^1.5.2",
"ethers": "^5.7.2",
"framer-motion": "^10.16.12",
"i18next": "^23.7.7",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.4.2",
"ionicons": "^7.2.1",
"luxon": "^3.0.4",
"pluralize-react": "^0.0.1",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"react-hook-form": "^7.38.0",
"react-hot-toast": "^2.4.0",
"react-i18next": "^13.5.0",
"react-scripts": "5.0.1",
"style-value-types": "^5.1.2",
"uuid": "^9.0.0",
"web-vitals": "^3.5.0",
"window-dimensions-hooks": "^1.2.1"
},
"scripts": {
"start": "react-scripts start",
"start:tailwind": "tailwindcss -i src/assets/css/index.css -o src/styles.css --watch",
"version": "npx genversion ./src/constants/Version.ts --es6",
"build": "npm run version && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --config .eslintrc.js --ignore-path .eslintignore src/**/*",
"i18n-extract": "i18next 'src/**/*.{ts,tsx}' -c './i18next-parser.config.mjs'",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"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"
]
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/node": "^20.10.3",
"@types/qrcode.react": "^1.0.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-router": "^5.1.18",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"autoprefixer": "^10.4.12",
"eslint": "^8.24.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-formatjs": "^4.11.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-unused-imports": "^3.0.0",
"genversion": "^3.1.1",
"gh-pages": "^6.1.1",
"i18next-parser": "^8.9.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.17",
"prettier": "3.1.0",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint -- --quiet --fix --no-error-on-unmatched-pattern"
]
}
}