-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
48 lines (48 loc) · 1.43 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
{
"name": "defillama-extension",
"private": true,
"version": "0.0.8.2",
"type": "module",
"description": "DefiLlama Extension",
"displayName": "DefiLlama",
"scripts": {
"dev": "rm -f vite.config.ts.*.mjs && nodemon",
"build": "tsc --noEmit && vite build",
"build_firefox": "npm run build && node fixForFox.js",
"zip": "web-ext build -s dist -a packed -n extension.zip -o",
"prep": "rm -f vite.config.ts.*.mjs && rm -rf dist packed && yarn build && yarn zip"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.10",
"@chakra-ui/react": "2.3.4",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@tanstack/react-query": "^4.8.0",
"dexie": "^3.2.2",
"dexie-react-hooks": "^1.1.1",
"fast-levenshtein": "^3.0.0",
"framer-motion": "^7.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@types/chrome": "^0.0.197",
"@types/fast-levenshtein": "^0.0.2",
"@types/node": "^18.7.23",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/webextension-polyfill": "^0.9.1",
"@vitejs/plugin-react": "^2.1.0",
"fs-extra": "^10.1.0",
"nodemon": "^2.0.20",
"sass": "^1.55.0",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"vite": "^3.1.4",
"vite-plugin-web-extension": "^1.4.4",
"web-ext": "^7.2.0"
}
}