-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
105 lines (105 loc) · 3.09 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
{
"name": "seafood",
"version": "0.1.0",
"private": true,
"dependencies": {
"@floating-ui/react": "^0.19.1",
"@octokit/core": "^4.0.5",
"@octokit/graphql": "^5.0.4",
"@tailwindcss/forms": "^0.4.0",
"@testing-library/react": "^14.0.0",
"axios": "^0.26.0",
"chart.js": "^3.7.1",
"comlink": "^4.3.1",
"compare-versions": "^5.0.1",
"cookie-parser": "^1.4.6",
"dayjs": "^1.11.5",
"ethereum-multicall": "^2.19.0",
"ethers": "^5.7.1",
"express": "^4.17.2",
"framer-motion": "^10.12.17",
"morgan": "^1.10.0",
"pg": "^8.8.0",
"pg-format": "^1.0.4",
"prompt": "^1.3.0",
"react": "^18.2.0",
"react-chartjs-2": "^4.1.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-indiana-drag-scroll": "^2.2.0",
"react-infinite-scroll-component": "^6.1.0",
"react-responsive": "^9.0.0-beta.6",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.1",
"react-slider": "^2.0.4",
"react-sortablejs": "^6.1.1",
"react-switch": "^7.0.0",
"react-timeago": "^7.1.0",
"react-use-keypress": "^1.3.0",
"sortablejs": "^1.14.0",
"typescript": "^4.8.4",
"use-debounce": "^7.0.1",
"use-local-storage": "^2.3.6",
"web-vitals": "^2.1.4",
"workbox-core": "^6.5.4",
"workbox-expiration": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-infinite-scroll-component": "^5.0.0",
"@types/react-slider": "^1.3.1",
"@types/react-timeago": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"dotenv": "^16.0.2",
"eslint": "^8.8.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"npm-run-all": "^4.1.5",
"tailwind-scrollbar": "^3.0.0",
"tailwindcss": "^3.3.1"
},
"scripts": {
"start": "run-p start:**",
"start:server": "cd api && yarn start",
"start:app": "react-scripts start",
"build": "react-scripts build",
"test": "DOTENV_CONFIG_PATH=.env react-scripts test",
"eject": "react-scripts eject",
"now-build": "react-scripts build && mv build dist",
"sw": "run-p sw:**",
"sw:api": "cd api && npm start",
"sw:app": "npx http-server ./build -p 3000 -P http://localhost:9000/",
"pag": "npx pwa-asset-generator public/icon.png public/icon -o false -p \"0%\" -m public/manifest.json -i public/index.html -t png -c true -w true -d true -n"
},
"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"
]
},
"resolutions": {
"autoprefixer": "10.4.5"
},
"proxy": "http://localhost:9000/"
}