|
3 | 3 | "version": "0.1.124", |
4 | 4 | "license": "(MIT OR Apache-2.0)", |
5 | 5 | "scripts": { |
6 | | - "dev": "NODE_NO_WARNINGS=1 next dev", |
7 | | - "dev:https": "next-dev-https --https --qr --port 3000", |
8 | | - "dev:nlocal": "NEXT_PUBLIC_PROVIDER=http://localhost:8545 NEXT_PUBLIC_AVUP_ENDPOINT=http://localhost:8787 pnpm dev", |
9 | | - "dev:localname": "NEXT_PUBLIC_PROVIDER=\"http://$(\"hostname\"):8545\" && NEXT_PUBLIC_AVUP_ENDPOINT=\"http://$(\"hostname\"):8787\" && NEXT_PUBLIC_GRAPH_URI=\"http://$(\"hostname\"):8000/subgraphs/name/graphprotocol/ens\" && pnpm dev", |
10 | | - "dev:glocal": "rm -rf .next && NEXT_PUBLIC_GRAPH_URI=http://localhost:8000/subgraphs/name/graphprotocol/ens NEXT_PUBLIC_ETH_NODE=anvil pnpm dev:nlocal", |
11 | | - "dev:gonline": "NEXT_PUBLIC_GRAPH_URI=https://api.thegraph.com/subgraphs/name/tateb/temp-goerli-ens pnpm dev", |
| 6 | + "analyse": "pnpm analyze", |
| 7 | + "analyze": "ANALYZE=true pnpm build", |
12 | 8 | "build": "next build", |
13 | | - "build:preview": "NEXT_PUBLIC_ENSJS_DEBUG=true next build --profile", |
14 | | - "build:local": "ANALYZE=true next build", |
15 | 9 | "build:glocal": "NEXT_PUBLIC_GRAPH_URI=http://localhost:8000/subgraphs/name/graphprotocol/ens NEXT_PUBLIC_PROVIDER=http://localhost:8545 NEXT_PUBLIC_ETH_NODE=anvil pnpm build", |
| 10 | + "build:local": "ANALYZE=true next build", |
16 | 11 | "build:localname": "NEXT_PUBLIC_PROVIDER=\"http://$(\"hostname\"):8545\" && NEXT_PUBLIC_GRAPH_URI=\"http://$(\"hostname\"):8000/subgraphs/name/graphprotocol/ens\" && pnpm build", |
17 | | - "start": "next start", |
18 | | - "buildandstart": "pnpm build && pnpm start", |
| 12 | + "build:preview": "NEXT_PUBLIC_ENSJS_DEBUG=true next build --profile", |
19 | 13 | "buildandexport": "pnpm build && pnpm export", |
| 14 | + "buildandstart": "pnpm build && pnpm start", |
20 | 15 | "buildandstart:glocal": "pnpm build:glocal && pnpm start", |
21 | | - "tenv": "ens-test-env -a", |
| 16 | + "compose": "cp ./node_modules/@ensdomains/ens-test-env/src/docker-compose.yml ./docker-compose.yml", |
22 | 17 | "denv": "cd ../linea-ens-contracts && yarn && yarn build && cd ../linea-ens-app && pnpm i && pnpm tenv start -ns -nb --extra-time 12232000 --verbosity 1", |
23 | | - "lint": "next lint && pnpm stylelint stylelint \"./src/**/*.tsx\"", |
24 | | - "lint:types": "tsc --noEmit", |
25 | | - "lint:fix": "next lint --fix", |
26 | | - "export:add-mm-ios-provider": "node ./scripts/add-mm-ios-provider.mjs", |
27 | | - "export:base": "next export", |
28 | | - "export": "pnpm export:base && pnpm export:add-mm-ios-provider", |
29 | | - "analyze": "ANALYZE=true pnpm build", |
30 | | - "analyse": "pnpm analyze", |
31 | | - "test": "vitest run", |
32 | | - "test:watch": "vitest", |
33 | | - "test:coverage": "vitest run --coverage", |
34 | | - "e2e:install": "npx playwright install chromium", |
| 18 | + "dev": "NODE_NO_WARNINGS=1 next dev", |
| 19 | + "dev:glocal": "rm -rf .next && NEXT_PUBLIC_GRAPH_URI=http://localhost:8000/subgraphs/name/graphprotocol/ens NEXT_PUBLIC_ETH_NODE=anvil pnpm dev:nlocal", |
| 20 | + "dev:gonline": "NEXT_PUBLIC_GRAPH_URI=https://api.thegraph.com/subgraphs/name/tateb/temp-goerli-ens pnpm dev", |
| 21 | + "dev:https": "next-dev-https --https --qr --port 3000", |
| 22 | + "dev:localname": "NEXT_PUBLIC_PROVIDER=\"http://$(\"hostname\"):8545\" && NEXT_PUBLIC_AVUP_ENDPOINT=\"http://$(\"hostname\"):8787\" && NEXT_PUBLIC_GRAPH_URI=\"http://$(\"hostname\"):8000/subgraphs/name/graphprotocol/ens\" && pnpm dev", |
| 23 | + "dev:nlocal": "NEXT_PUBLIC_PROVIDER=http://localhost:8545 NEXT_PUBLIC_AVUP_ENDPOINT=http://localhost:8787 pnpm dev", |
35 | 24 | "e2e": "npx playwright test --project=stateless", |
36 | | - "e2e:stateful": "npx playwright test --project=stateful", |
37 | 25 | "e2e:ci": "E2E=true CI=true STABLE_MODE=true SLOW_MODE=true pnpm tenv start --extra-time 11368000", |
| 26 | + "e2e:install": "npx playwright install chromium", |
| 27 | + "e2e:stateful": "npx playwright test --project=stateful", |
| 28 | + "enode": "ganache --wallet.mnemonic=\"test test test test test test test test test test test junk\" --chain.chainId 1337 --chain.networkId 1337 --chain.time 1659500634000", |
| 29 | + "export": "pnpm export:base && pnpm export:add-mm-ios-provider", |
| 30 | + "export:add-mm-ios-provider": "node ./scripts/add-mm-ios-provider.mjs", |
| 31 | + "export:base": "next export", |
| 32 | + "generate:sitemaps": "node ./scripts/generate-site-map.mjs", |
| 33 | + "lint": "next lint && pnpm stylelint stylelint \"./src/**/*.tsx\"", |
| 34 | + "lint:fix": "next lint --fix", |
| 35 | + "lint:types": "tsc --noEmit", |
38 | 36 | "local:add:ensjs": "yalc add @ensdomains/ensjs --workspace && pnpm install", |
39 | | - "local:remove:ensjs": "node ./scripts/removeWorkspace.mjs @ensdomains/ensjs && yalc remove @ensdomains/ensjs && pnpm install", |
40 | 37 | "local:add:thorin": "yalc add @ensdomains/thorin --workspace && pnpm install", |
| 38 | + "local:remove:ensjs": "node ./scripts/removeWorkspace.mjs @ensdomains/ensjs && yalc remove @ensdomains/ensjs && pnpm install", |
41 | 39 | "local:remove:thorin": "node ./scripts/removeWorkspace.mjs @ensdomains/thorin && yalc remove @ensdomains/thorin && pnpm install", |
| 40 | + "start": "next start", |
| 41 | + "subgraph:update": "ens-test-env subgraph --var NEXT_PUBLIC_DEPLOYMENT_ADDRESSES", |
| 42 | + "tenv": "ens-test-env -a", |
| 43 | + "test": "vitest run", |
| 44 | + "test:coverage": "vitest run --coverage", |
| 45 | + "test:watch": "vitest", |
42 | 46 | "wrangle": "wrangler pages dev ./out --local --log-level none", |
43 | 47 | "wrangle:dev": "wrangler pages dev ./next", |
44 | | - "wrangle:list": "wrangler deployments list", |
45 | | - "generate:sitemaps": "node ./scripts/generate-site-map.mjs", |
46 | | - "enode": "ganache --wallet.mnemonic=\"test test test test test test test test test test test junk\" --chain.chainId 1337 --chain.networkId 1337 --chain.time 1659500634000", |
47 | | - "compose": "cp ./node_modules/@ensdomains/ens-test-env/src/docker-compose.yml ./docker-compose.yml", |
48 | | - "subgraph:update": "ens-test-env subgraph --var NEXT_PUBLIC_DEPLOYMENT_ADDRESSES" |
| 48 | + "wrangle:list": "wrangler deployments list" |
49 | 49 | }, |
50 | 50 | "dependencies": { |
51 | 51 | "@ensdomains/address-encoder": "1.1.1", |
|
98 | 98 | "viem": "^2.7.13", |
99 | 99 | "wagmi": "2.5.7" |
100 | 100 | }, |
101 | | - "peerDependencies": { |
102 | | - "react": "*", |
103 | | - "react-dom": "*" |
104 | | - }, |
105 | 101 | "devDependencies": { |
106 | 102 | "@adraffy/ens-normalize": "^1.9.4", |
107 | 103 | "@cloudflare/workers-types": "^3.14.1", |
|
196 | 192 | "yalc": "^1.0.0-pre.53", |
197 | 193 | "yaml": "^2.4.1" |
198 | 194 | }, |
199 | | - "pnpm": { |
200 | | - "overrides": { |
201 | | - "wrtc": "https://registry.npmjs.org/@koush/wrtc/-/wrtc-0.5.2.tgz", |
202 | | - "bn.js": "npm:bn.js@^5.2.0", |
203 | | - "@nomiclabs/hardhat-ethers": "npm:[email protected]", |
204 | | - "@walletconnect/ethereum-provider": "2.11.1", |
205 | | - "@walletconnect/modal": "2.6.2" |
206 | | - }, |
207 | | - "patchedDependencies": { |
208 | | - |
209 | | - |
210 | | - |
211 | | - } |
| 195 | + "peerDependencies": { |
| 196 | + "react": "*", |
| 197 | + "react-dom": "*" |
212 | 198 | } |
213 | 199 | } |
0 commit comments