-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
{
"name": "algodex-market-making-bot",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test-lint": "eslint . --quiet",
"test-jest": "rm -rf built && tsc && jest -- built",
"compile-and-start-cli": "rm -rf built && tsc && node built/bin/bot.js",
"start-cli": "node built/bin/bot.js"
},
"dependencies": {
"@algodex/algodex-sdk": "^2.2.3",
"@emotion/cache": "^11.10.3",
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^5.10.6",
"@mui/lab": "^5.0.0-alpha.98",
"@mui/material": "^5.10.4",
"@tinymanorg/tinyman-js-sdk": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"algosdk": "^1.21.0",
"axios": "^1.1.3",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"eventemitter3": "^4.0.7",
"formik": "^2.2.9",
"jest": "^29.2.0",
"next": "12.3.0",
"next-i18next": "^12.1.0",
"next-pwa": "^5.6.0",
"pouchdb": "^7.3.0",
"react": "18.2.0",
"react-country-flag": "^3.0.2",
"react-dom": "18.2.0",
"ua-parser-js": "^1.0.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/node": "18.7.16",
"@types/pouchdb": "^6.4.0",
"@types/react": "18.0.19",
"@types/react-dom": "18.0.6",
"@types/ua-parser-js": "^0.7.36",
"eslint": "8.23.0",
"eslint-config-next": "12.3.0",
"eslint-plugin-jest": "^27.1.2",
"typescript": "4.8.3"
}
}