-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.37 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
{
"name": "defillama",
"sideEffects": false,
"version": "1.0.0",
"private": true,
"homepage": "https://defillama.com",
"license": "GPL-3.0-or-later",
"scripts": {
"build": "yarn rmv && tsc -p ./tsconfig.json && tsc-alias",
"dev": "yarn rmv && tsc && (concurrently \"tsc --watch -p tsconfig.json\")",
"start-dev": "export $(cat .env | xargs) && nodemon --watch ./src/index.ts --exec \"rm -rf ./dist && yarn rmv && yarn build && node ./dist/src/index.js\"",
"start": "rm -rf ./dist && yarn rmv && yarn build && node ./dist/src/index.js",
"update-submodules": "git submodule update --init --recursive --remote --merge",
"rmv": "rm -rf ./frontend/src/components/Cexs ./frontend/src/pages/cex/ && cat ./cexs.ts > ./frontend/src/pages/cexs/index.tsx"
},
"dependencies": {
"@sentry/nextjs": "^7.34.0",
"@tanstack/react-table": "^8.8.4",
"@tanstack/react-virtual": "^3.0.0-beta.54",
"@types/express": "4",
"@types/node-cron": "^3.0.11",
"ariakit": "^2.0.0-next.43",
"cacache": "^18.0.4",
"colord": "^2.9.3",
"concurrently": "^8.0.1",
"cors": "^2.8.5",
"dayjs": "^1.11.3",
"echarts": "^5.4.2",
"echarts-simple-transform": "^1.0.0",
"express": "^4.18.2",
"fathom-client": "^3.4.1",
"ioredis": "^5.3.2",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"next": "12.3.1",
"node-cron": "^3.0.3",
"node-fetch": "2",
"nodemon": "^2.0.22",
"numeral": "^2.0.6",
"polished": "^4.2.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.10",
"react-intersection-observer": "^9.2.2",
"react-markdown": "^8.0.3",
"react-query": "^3.39.3",
"react-select": "^5.3.2",
"react-switch": "^6.0.0",
"rebass": "^4.0.7",
"redis": "^4.6.6",
"styled-components": "^5.3.5",
"swagger-ui": "^4.12.0",
"swr": "^1.3.0",
"tsc-alias": "^1.8.6",
"uuid": "^8.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.1.6",
"@types/node": "16",
"@types/react": "17.0.38",
"@types/styled-components": "^5.1.25",
"@types/swagger-ui-react": "^4.11.0",
"eslint": "8.6.0",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1",
"tsconfig-paths": "^4.2.0",
"typescript": "4.7.4"
},
"_moduleAliases": {
"~": "../src/*"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
}
}