forked from luigicallero/UseDapp_TokenPrices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.49 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
{
"name": "@usedapp/example",
"version": "0.2.7",
"private": true,
"scripts": {
"start": "webpack serve --mode development",
"build": "tsc --noEmit && rimraf build && webpack --mode production --progress",
"lint": "yarn lint:prettier --check && yarn lint:eslint",
"lint:fix": "yarn lint:prettier --write && yarn lint:eslint --fix",
"lint:eslint": "eslint './{src, test}/**/*.{ts,tsx}'",
"lint:prettier": "yarn prettier './{src, test}/**/*.{ts,tsx}'"
},
"dependencies": {
"@types/styled-components": "^5.1.7",
"@uniswap/default-token-list": "^2.0.0",
"@usedapp/core": "^0.4.0",
"@usedapp/coingecko": "^0.3.22",
"file-loader": "^6.2.0",
"framer-motion": "^4.1.5",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-router-dom": "^5.2.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@testing-library/react": "^11.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"copy-webpack-plugin": "^6.2.1",
"esbuild-loader": "^2.11.0",
"eslint": "7.19.0",
"html-webpack-plugin": "^4.5.0",
"prettier": "^2.0.5",
"react-refresh": "^0.10.0",
"rimraf": "^3.0.2",
"speed-measure-webpack-plugin": "^1.5.0",
"ts-loader": "^8.0.7",
"typescript": "^4.0.0",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0"
}
}