forked from 0xCazador/defi-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.2 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
{
"name": "defi-simulator",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run sync_and_purge && next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"export": "next build && next export",
"lint": "next lint",
"lint:fix": "next lint --fix",
"jest": "jest",
"jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"preflight": "npm run prettier:check && npm run lint && npm run typecheck && npm run jest",
"test": "npm run jest",
"storybook": "start-storybook -p 7001",
"storybook:build": "build-storybook",
"extract": "lingui extract",
"compile": "lingui compile",
"sync": "lingui extract --overwrite && lingui compile",
"sync_and_purge": "lingui extract --overwrite --clean && lingui compile"
},
"dependencies": {
"@aave/contract-helpers": "1.30.3",
"@aave/math-utils": "1.30.3",
"@bgd-labs/aave-address-book": "3.7.0",
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@hookstate/core": "^4.0.1",
"@lingui/react": "^4.3.0",
"@mantine/carousel": "6.0.21",
"@mantine/core": "6.0.21",
"@mantine/dates": "6.0.21",
"@mantine/hooks": "6.0.21",
"@mantine/next": "6.0.21",
"@mantine/notifications": "6.0.21",
"@mantine/prism": "6.0.21",
"@next/bundle-analyzer": "^13.2.4",
"@testing-library/react-hooks": "^8.0.1",
"accounting": "^0.4.1",
"alchemy-sdk": "^2.7.0",
"bignumber.js": "^9.1.1",
"dayjs": "^1.11.7",
"ethers": "^5.7.2",
"jest-fetch-mock": "^3.0.3",
"next": "14.0.4",
"nouislider": "^15.7.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/plugin-proposal-do-expressions": "^7.22.5",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@lingui/cli": "^4.3.0",
"@lingui/macro": "^4.3.0",
"@next/eslint-plugin-next": "^12.3.4",
"@storybook/react": "^7.0.2",
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/accounting": "^0.4.2",
"@types/jest": "^27.5.2",
"@types/node": "^18.11.4",
"@types/react": "18.0.21",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"babel-loader": "^8.3.0",
"babel-plugin-macros": "^3.1.0",
"eslint": "^8.37.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-mantine": "2.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.5.13",
"eslint-plugin-testing-library": "^5.10.2",
"jest": "^27.5.1",
"prettier": "^2.8.7",
"storybook-addon-turbo-build": "^1.1.0",
"storybook-dark-mode": "^1.1.2",
"ts-jest": "^27.1.5",
"typescript": "4.8.4"
}
}