-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
48 lines (48 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
47
48
{
"name": "estuary-www",
"version": "0.0.5",
"engines": {
"node": ">=16.8"
},
"scripts": {
"dev": "NEXT_PUBLIC_ESTUARY_API=${ESTUARY_API:-http://localhost:3004} next dev -p 10000",
"dev-docker": "NEXT_PUBLIC_ESTUARY_API=${ESTUARY_API:-http://localhost:3004} next dev -p 10000",
"dev-production": "NEXT_PUBLIC_ESTUARY_API=${ESTUARY_API:-https://api.estuary.tech} NEXT_PUBLIC_ESTUARY_METRICS_API=https://metrics-api.estuary.tech NEXT_PUBLIC_ESTUARY_AUTH_API=https://auth-svc.onrender.com next dev -p 10000",
"build": "next build",
"check-types": "tsc --noemit",
"start": "NODE_ENV=production PORT=10000 next start",
"test": "jest"
},
"pre-commit": [
"check-types"
],
"repository": "application-research/estuary-www",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.18.9",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@floating-ui/react": "^0.20.1",
"@glif/filecoin-number": "^1.1.0-beta.17",
"@metamask/jazzicon": "^2.0.0",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.0",
"@types/node": "^17.0.13",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"js-cookie": "^3.0.5",
"next": "^13.4.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-table": "^7.8.0",
"react-use": "^17.4.0",
"sass": "1.65.1",
"uuid": "^9.0.0",
"web3": "^1.8.2"
},
"devDependencies": {
"@types/react": "^17.0.37",
"pre-commit": "^1.2.2",
"typescript": "^4.5.2"
}
}