forked from application-research/estuary-www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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": "estuary-www",
"version": "0.0.5",
"engines": {
"node": ">=16.8"
},
"scripts": {
"dev": "NEXT_PUBLIC_ESTUARY_API=${ESTUARY_API:-http://localhost:3004} next dev -p 4444",
"dev-docker": "NEXT_PUBLIC_ESTUARY_API=${ESTUARY_API:-http://localhost:3004} next dev -p 4444",
"dev-production": "NEXT_PUBLIC_ESTUARY_API=${ESTUARY_API:-https://api.estuary.tech} NEXT_PUBLIC_ESTUARY_METRICS_API=https://metrics-api.estuary.tech next dev -p 4444",
"build": "next build",
"check-types": "tsc --noemit",
"start": "NODE_ENV=production 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",
"@glif/filecoin-number": "^1.1.0-beta.17",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.0",
"@types/node": "^17.0.13",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"d3": "^5.16.0",
"js-cookie": "^3.0.1",
"next": "^13.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-table": "^7.8.0",
"react-use": "^17.4.0",
"sass": "1.54.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/react": "^17.0.37",
"pre-commit": "^1.2.2",
"typescript": "^4.5.2"
}
}