forked from pancakeswap/pancake-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
153 lines (153 loc) · 5.06 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "pancake-frontend",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"apis/*"
],
"scripts": {
"analyze": "ANALYZE=true yarn build",
"dev": "next dev",
"dev:aptos": "yarn turbo run dev --filter=aptos-web...",
"build": "next build",
"start": "next start",
"test": "LC_ALL=\"en_US.UTF-8\" jest && yarn turbo run test",
"test:ci": "jest && yarn turbo run test --filter=[HEAD^1]",
"test:watch": "LC_ALL=\"en_US.UTF-8\" jest --watch",
"test:config": "jest src/config/__tests__/ --testPathIgnorePatterns",
"integration-test": "start-server-and-test start http://localhost:3000 'turbo run integration-test --filter=test'",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:style": "npx stylelint '**/*.{ts,tsx}'",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json}\"",
"format:check:staged": "lint-staged",
"format:write": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"updateLPsAPR": "yarn turbo run build --filter=@pancakeswap/sdk && NODE_PATH=./src ts-node --compiler-options '{\"module\":\"commonjs\"}' scripts/updateLPsAPR.ts",
"prepare": "husky install",
"postinstall": "patch-package && yarn run typechain",
"typechain": "typechain --out-dir src/config/abi/types --target=ethers-v5 \"src/config/abi/*.json\"",
"clean": "turbo run clean && rm -rf node_modules"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@ethersproject/abi": "^5.0.0",
"@ethersproject/address": "^5.0.0",
"@ethersproject/bignumber": "^5.0.0",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/constants": "^5.0.0",
"@ethersproject/contracts": "^5.0.0",
"@ethersproject/experimental": "^5.0.0",
"@ethersproject/providers": "^5.0.0",
"@ethersproject/strings": "^5.0.0",
"@ethersproject/units": "^5.0.0",
"@gelatonetwork/limit-orders-lib": "^4.1.0",
"@gnosis.pm/safe-apps-wagmi": "^1.0.2",
"@next/bundle-analyzer": "^12.0.7",
"@reduxjs/toolkit": "^1.8.2",
"@sentry/nextjs": "^7.9.0",
"@snapshot-labs/snapshot.js": "^0.4.40",
"@uniswap/token-lists": "^1.0.0-beta.19",
"@vanilla-extract/next-plugin": "^2.0.2",
"ajv": "^6.12.3",
"bignumber.js": "^9.0.0",
"canvas-confetti": "^1.5.1",
"cids": "^1.0.0",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"easymde": "^2.16.1",
"fast-json-stable-stringify": "^2.1.0",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"jotai": "^1.8.6",
"js-cookie": "^3.0.1",
"lightweight-charts": "^3.8.0",
"local-storage": "^2.0.0",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"next": "^12.3.1",
"next-axiom": "^0.13.0",
"next-themes": "^0.2.0",
"numeral": "^2.0.6",
"react": "^18.2.0",
"react-countup": "^6.3.1",
"react-datepicker": "^4.8.0",
"react-device-detect": "^2.1.2",
"react-dom": "^18.2.0",
"react-markdown": "^6.0.2",
"react-redux": "^8.0.4",
"react-transition-group": "^4.4.5",
"react-window": "^1.8.7",
"recharts": "2.1.15",
"redux-persist": "^6.0.0",
"remark-gfm": "^1.0.0",
"split-grid": "^1.0.11",
"styled-components": "^5.3.3",
"swiper": "^8.4.2",
"swr": "^1.3.0",
"typescript": "^4.8.4",
"wagmi": "^0.6.7"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.0.10",
"@stylelint/postcss-css-in-js": "^0.37.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@typechain/ethers-v5": "^8.0.5",
"@types/canvas-confetti": "^1.4.2",
"@types/jest": "^26.0.23",
"@types/js-cookie": "^3.0.2",
"@types/lodash": "^4.14.178",
"@types/node": "^13.13.5",
"@types/react": "^18.0.17",
"@types/react-datepicker": "^4.4.1",
"@types/react-dom": "^18.0.6",
"@types/react-redux": "^7.1.24",
"@types/react-transition-group": "^4.4.1",
"@types/react-window": "^1.8.3",
"@types/simplemde": "^1.11.7",
"@types/styled-components": "^5.1.26",
"@vanilla-extract/babel-plugin": "^1.2.0",
"eslint": "^7.26.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-lodash": "^7.4.0",
"husky": "^7.0.0",
"jest": "^27.4.5",
"lerna": "^4.0.0",
"lint-staged": "^12.3.4",
"next-transpile-modules": "^9.0.0",
"patch-package": "^6.4.7",
"postcss-scss": "^4.0.3",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"serve": "^12.0.0",
"source-map-explorer": "^2.5.2",
"start-server-and-test": "^1.14.0",
"stylelint": "^14.5.3",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-styled-components": "^0.1.1",
"tilg": "^0.1.1",
"ts-node": "^10.9.1",
"tsconfig": "*",
"turbo": "^1.6.1",
"typechain": "^6.1.0",
"vitest": "^0.23.1"
}
}