Skip to content

Commit e46ff6e

Browse files
committed
Init project
0 parents  commit e46ff6e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+53387
-0
lines changed

.env.example

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
PORT=3000
2+
NODE_URL=wss://rpc.reefscan.com/ws
3+
RECAPTCHA_SECRET=
4+
SENTRY_DNS=
5+
ENVIRONMENT=
6+
NETWORK=
7+
GRAPHQL_API=https://squid.subsquid.io/reef-explorer/graphql
8+
JWT_SECRET=XXXXX

.eslintrc.json

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": [
7+
"airbnb-base"
8+
],
9+
"parser": "@typescript-eslint/parser",
10+
"parserOptions": {
11+
"ecmaVersion": 13,
12+
"sourceType": "module"
13+
},
14+
"plugins": [
15+
"@typescript-eslint"
16+
],
17+
"rules": {
18+
"import/extensions": [
19+
"error",
20+
"ignorePackages",
21+
{
22+
"ts": "never"
23+
}
24+
],
25+
"max-len": "off",
26+
"import/no-extraneous-dependencies": "off"
27+
},
28+
"settings": {
29+
"import/resolver": {
30+
"node": {
31+
"extensions": [".ts"]
32+
}
33+
}
34+
}
35+
}

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.vscode
2+
.DS_Store
3+
node_modules
4+
dist/
5+
/.idea/
6+
.env

0 commit comments

Comments
 (0)