-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.75 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.75 KB
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
{
"name": "lightnode-website",
"version": "0.1.0",
"private": true,
"scripts": {
"local": "cp ./envs/.env.local .env && next dev",
"dev": "cp ./envs/.env.develop .env && next dev -p 5001",
"ld": "export PORT=5001 && cp ./envs/.env.develop .env && rm -rf .next && next dev",
"ls": "export PORT=5001 && cp ./envs/.env.staging .env && rm -rf .next && next dev",
"lp": "export PORT=5001 && cp ./envs/.env.production .env && rm -rf .next && next dev",
"build": "export PORT=5001 && cp ./envs/.env.production .env && rm -rf .next && next build",
"start": "next start -p 5001",
"deploy": "next start -p 5001",
"build-stats": "cross-env ANALYZE=true npm run build",
"lint": "next lint",
"analyze": "ANALYZE=true next build",
"build-dev-deploy": "export PORT=5001 && cp ./envs/.env.develop .env && rm -rf .next && next build && next start",
"build-production-deploy": "export PORT=5501 && cp ./envs/.env.production .env && rm -rf .next && next build && next start"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@gsap/react": "^2.1.0",
"@next/bundle-analyzer": "^14.0.4",
"@reduxjs/toolkit": "^2.0.1",
"axios": "^1.6.5",
"bignumber.js": "^9.1.2",
"bip322-js": "^1.1.0",
"bitcoin-address-validation": "^2.2.3",
"bitcoinjs-message": "^2.2.0",
"blo": "^1.0.1",
"classnames": "^2.5.1",
"clsx": "^2.1.0",
"crypto-js": "4.0.0",
"eslint-plugin-prettier": "^5.1.3",
"ethers": "5.7.2",
"framer-motion": "^11.2.5",
"gsap": "^3.12.4",
"moment": "^2.30.1",
"next": "14.0.4",
"next-compose-plugins": "^2.2.1",
"next-plugin-svgr": "^1.1.10",
"prettier": "^3.2.5",
"react": "^18",
"react-device-detect": "^2.2.3",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-infinite-scroll-component": "^6.1.0",
"react-qr-code": "^2.0.12",
"react-redux": "^9.0.4",
"react-svg": "^16.1.32",
"resolve-url-loader": "^5.0.0",
"sass": "^1.69.5",
"sharp": "^0.33.1",
"styled-components": "^6.1.11",
"svg-react-loader": "^0.4.6",
"swr": "^2.2.4",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@types/crypto-js": "4.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@typescript-eslint/eslint-plugin": "7.0.1",
"encoding": "^0.1.13",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"typescript": "^5.4.3"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.17",
"prettier": "^3.0.2"
}
}