-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.74 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "fvm_e_v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"dev:custom": "nodemon",
"build:custom": "next build && tsc -p tsconfig.server.json && tsc-alias -p tsconfig.server.json",
"start:custom": "cross-env NODE_ENV=production node dist/server.js"
},
"dependencies": {
"@adobe/node-fetch-retry": "^2.2.0",
"@clickhouse/client": "^0.0.11",
"@filecoin-shipyard/lotus-client-provider-nodejs": "^1.1.1",
"@filecoin-shipyard/lotus-client-rpc": "^1.2.0",
"@filecoin-shipyard/lotus-client-schema": "^4.2.0",
"@glif/filecoin-address": "^2.0.37",
"@hapi/iron": "^7.0.0",
"@magic-sdk/admin": "^1.8.0",
"@segment/analytics-next": "^1.49.2",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.4",
"@types/luxon": "^3.1.0",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-json-pretty": "^2.2.0",
"@types/react-monaco-editor": "^0.16.0",
"apollo-server-core": "^3.11.1",
"apollo-server-micro": "^3.11.1",
"autoprefixer": "^10.4.7",
"axios": "^0.27.2",
"babel-plugin-macros": "^3.1.0",
"big.js": "^6.2.1",
"cbor": "^8.1.0",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"graphiql": "^2.2.0",
"graphql": "^16.6.0",
"graphql-type-json": "^0.3.2",
"kafkajs": "^2.2.4",
"magic-sdk": "^11.0.0",
"micro": "^10.0.1",
"monaco-editor": "^0.36.1",
"monaco-editor-webpack-plugin": "^7.0.1",
"next": "12.3.4",
"next-i18next": "^11.0.0",
"next-transpile-modules": "^10.0.0",
"nextjs-google-analytics": "^2.1.0",
"nextjs-progressbar": "^0.0.16",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"ramda": "^0.28.0",
"randomstring": "^1.2.3",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-json-pretty": "^2.2.0",
"react-monaco-editor": "^0.51.0",
"react-select": "^5.7.0",
"react-toastify": "^9.1.1",
"sass": "^1.58.3",
"semver": "^7.3.8",
"solc": "^0.8.18",
"tailwindcss": "^3.1.4",
"tw-elements": "^1.0.0-alpha13",
"unzipper": "^0.10.11",
"web3.storage": "^4.4.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.20.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/big.js": "^6.1.6",
"@types/bignumber.js": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/classnames": "^2.3.1",
"@types/cookie": "^0.5.1",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.2.4",
"@types/morgan": "^1.9.4",
"@types/node": "18.14.1",
"@types/ramda": "^0.28.20",
"@types/randomstring": "^1.1.8",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/semver": "^7.3.13",
"@types/unzipper": "^0.10.5",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"eslint": "8.18.0",
"eslint-config-next": "12.1.6",
"express": "^4.18.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.2",
"tsconfig-paths": "^3.14.2",
"typescript": "4.7.4"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "node -r tsconfig-paths/register -r ts-node/register ./server.ts",
"ext": "ts, js"
}
}