-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.86 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.86 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
{
"name": "unift-dex",
"version": "0.1.0",
"private": true,
"dependencies": {
"@davatar/react": "1.8.1",
"@headlessui/react": "1.6.1",
"@lingui/core": "3.13.3",
"@lingui/react": "3.13.3",
"@reduxjs/toolkit": "^1.9.2",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "11.2.7",
"@testing-library/user-event": "12.8.3",
"@types/node": "18.7.13",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/react-router-dom": "5.3.3",
"ahooks": "^3.7.5",
"antd": "5.3.3",
"await-to-js": "^3.0.0",
"axios": "^1.3.4",
"bignumber.js": "^9.1.1",
"body-scroll-lock": "4.0.0-beta.0",
"buffer": "^6.0.3",
"classnames": "2.3.1",
"dayjs": "^1.11.7",
"framer-motion": "^10.16.4",
"graphql": "^16.6.0",
"lockr": "^0.9.0-beta.2",
"lodash": "4.17.21",
"md5": "^2.3.0",
"qrcode.react": "^3.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-helmet": "6.1.0",
"react-hot-toast": "2.2.0",
"react-icons": "4.3.1",
"react-redux": "^8.0.5",
"react-router-dom": "5.3.0",
"react-scripts": "5.0.0",
"sass": "^1.55.0",
"urql": "^4.0.0"
},
"scripts": {
"start": "dotenv -e .env.development react-app-rewired start",
"start:local": "dotenv -e .env.local react-app-rewired start",
"build": "INLINE_RUNTIME_CHUNK=false && react-app-rewired build",
"build:dev": "CI=false && dotenv -e .env.development react-app-rewired build",
"build:test": "CI=false && dotenv -e .env.test react-app-rewired build",
"extract": "lingui extract",
"compile": "lingui compile"
},
"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"
]
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@lingui/cli": "^3.17.2",
"@lingui/loader": "^3.17.2",
"@lingui/macro": "^3.17.2",
"babel-eslint": "^10.1.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"customize-cra": "^1.0.0",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.0.0",
"dotenv-expand": "^10.0.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "7.0.4",
"lint-staged": "12.3.4",
"prettier": "2.5.1",
"progress-bar-webpack-plugin": "^2.1.0",
"react-app-rewired": "^2.2.1"
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx}": [
"eslint --fix ./src",
"prettier --write"
]
}
}