-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
105 lines (105 loc) · 3.61 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": "@tracer/pools-client",
"version": "0.1.0",
"private": true,
"type": "esnext",
"dependencies": {
"@0xsequence/multicall": "^0.40.2",
"@ant-design/icons": "^4.6.2",
"@dhmk/zustand-lens": "^1.0.0",
"@headlessui/react": "^1.4.1",
"@heroicons/react": "^1.0.5",
"@segment/analytics-next": "^1.39.2",
"@tracer-protocol/onboard": "^2.2.4",
"@tracer-protocol/perpetual-pools-contracts": "^1.2.3",
"@tracer-protocol/perpetual-pools-v2-pool-watcher": "^0.0.13",
"@tracer-protocol/pools-js": "^3.1.14",
"antd": "^4.16.13",
"arb-ts": "^1.0.0-beta.4",
"bignumber.js": "^9.0.1",
"ethers": "^5.6.1",
"immer": "^9.0.12",
"next": "^12.1.5",
"path": "^0.12.7",
"react": "17",
"react-dom": "17",
"react-jazzicon": "^0.1.3",
"react-resize-detector": "^6.7.4",
"react-tiny-popover": "^7.0.1",
"react-toastify": "^8.2.0",
"stream": "^0.0.2",
"styled-components": "^5.3.5",
"swr": "^1.3.0",
"tailwindcss-multi-theme": "^1.0.4",
"zustand": "^3.7.1"
},
"scripts": {
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test:cypress": "start-server-and-test dev http://localhost:3002 cypress:run",
"test:cypress-visible": "start-server-and-test dev http://localhost:3002 cypress:open",
"dev": "next dev -p 3002",
"build": "next build",
"start": "next start -p 3002",
"export": "next export ",
"lint": "eslint '*/**/*.{ts,tsx}'",
"lint:fix": "eslint '*/**/*.{ts,tsx,js}' --fix",
"lint-staged": "eslint '*/**/*.{js,ts,tsx}' --cache",
"test:jest": "NODE_OPTIONS=--unhandled-rejections=warn jest --no-cache"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"devDependencies": {
"@cypress/react": "^6.0.0",
"@cypress/webpack-dev-server": "^2.0.0",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/react-hooks": "^8.0.0",
"@types/jest": "^27.5.1",
"@types/node": "^14.0.27",
"@types/react": "^16.9.45",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^5.17.0",
"autoprefixer": "^9",
"babel-plugin-styled-components": "^1.13.2",
"cypress": "^10.3.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-custom-alias": "^1.3.0",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"events": "^3.3.0",
"husky": "^5.2.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"less": "^4.1.1",
"lint-staged": "^10.5.4",
"mochawesome": "^7.1.3",
"postcss": "^7",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.8",
"start-server-and-test": "^1.14.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"ts-jest": "^28.0.2",
"ts-loader": "^9.2.5",
"tslib": "^2.2.0",
"typescript": "^4.4.2",
"webpack": "^5.51.1",
"yarn": "^1.22.4"
},
"lint-staged": {
"*": "eslint */**/*.{js,ts,tsx} --cache --fix"
}
}