Skip to content

Commit 50aaaf9

Browse files
committed
Added linting script to all packages
1 parent 7135b70 commit 50aaaf9

File tree

24 files changed

+557
-702
lines changed

24 files changed

+557
-702
lines changed

.editorconfig

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ root = true;
44
end_of_line = lf
55
insert_final_newline = true
66
tab_width = 4
7+
indent_style = tab

packages/config/package.json

+16-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
{
2-
"name": "@decentology/config",
3-
"version": "1.0.1",
4-
"license": "MIT",
5-
"files": [
6-
"eslint-preset.js",
7-
"base.json",
8-
"nextjs.json",
9-
"react-library.json"
10-
],
11-
"dependencies": {
12-
"eslint-config-next": "^12.0.3",
13-
"eslint-config-prettier": "^8.3.0"
14-
}
2+
"name": "@decentology/config",
3+
"version": "1.0.1",
4+
"license": "MIT",
5+
"files": [
6+
"eslint-preset.js",
7+
"base.json",
8+
"nextjs.json",
9+
"react-library.json"
10+
],
11+
"dependencies": {
12+
"eslint-config-next": "^12.0.3",
13+
"eslint-config-prettier": "^8.3.0"
14+
},
15+
"scripts": {
16+
"lint": "tsc --noEmit"
17+
}
1518
}

packages/hyperverse-algorand-counter/package.json

100755100644
+36-35
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,37 @@
11
{
2-
"name": "@decentology/hyperverse-algorand-counter",
3-
"source": "./source/index.ts",
4-
"main": "./distribution/index.js",
5-
"types": "./distribution/index.d.ts",
6-
"type": "module",
7-
"version": "1.0.11",
8-
"license": "MIT",
9-
"repository": {
10-
"type": "git",
11-
"url": "https://github.com/decentology/hyperverse-mono"
12-
},
13-
"scripts": {
14-
"build": "parcel build",
15-
"clean": "rimraf ./distribution"
16-
},
17-
"publishConfig": {
18-
"access": "public"
19-
},
20-
"files": [
21-
"distribution"
22-
],
23-
"peerDependencies": {
24-
"react": "^17.0.2"
25-
},
26-
"devDependencies": {
27-
"@decentology/config": "^1.0.1",
28-
"parcel": "^2.2.1",
29-
"rimraf": "^3.0.2"
30-
},
31-
"dependencies": {
32-
"@decentology/hyperverse": "^1.0.10",
33-
"@decentology/hyperverse-algorand": "^1.0.10",
34-
"algosdk": "^1.12.0"
35-
}
36-
}
2+
"name": "@decentology/hyperverse-algorand-counter",
3+
"source": "./source/index.ts",
4+
"main": "./distribution/index.js",
5+
"types": "./distribution/index.d.ts",
6+
"type": "module",
7+
"version": "1.0.11",
8+
"license": "MIT",
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/decentology/hyperverse-mono"
12+
},
13+
"scripts": {
14+
"build": "parcel build",
15+
"clean": "rimraf ./distribution",
16+
"lint": "tsc --noEmit"
17+
},
18+
"publishConfig": {
19+
"access": "public"
20+
},
21+
"files": [
22+
"distribution"
23+
],
24+
"peerDependencies": {
25+
"react": "^17.0.2"
26+
},
27+
"devDependencies": {
28+
"@decentology/config": "^1.0.1",
29+
"parcel": "^2.2.1",
30+
"rimraf": "^3.0.2"
31+
},
32+
"dependencies": {
33+
"@decentology/hyperverse": "^1.0.10",
34+
"@decentology/hyperverse-algorand": "^1.0.10",
35+
"algosdk": "^1.12.0"
36+
}
37+
}

packages/hyperverse-algorand/package.json

100755100644
+39-38
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,41 @@
11
{
2-
"name": "@decentology/hyperverse-algorand",
3-
"source": "./source/index.ts",
4-
"main": "./distribution/index.js",
5-
"types": "./distribution/index.d.ts",
6-
"version": "1.0.10",
7-
"license": "MIT",
8-
"repository": {
9-
"type": "git",
10-
"url": "https://github.com/decentology/hyperverse-mono"
11-
},
12-
"files": [
13-
"distribution"
14-
],
15-
"scripts": {
16-
"build": "parcel build",
17-
"clean": "rimraf ./distribution"
18-
},
19-
"peerDependencies": {
20-
"react": "^17.0.2"
21-
},
22-
"publishConfig": {
23-
"access": "public"
24-
},
25-
"devDependencies": {
26-
"@decentology/config": "^1.0.1",
27-
"parcel": "^2.2.1"
28-
},
29-
"dependencies": {
30-
"@decentology/hyperverse": "^1.0.10",
31-
"@json-rpc-tools/utils": "^1.7.6",
32-
"@walletconnect/client": "^1.7.1",
33-
"algorand-walletconnect-qrcode-modal": "^1.6.1",
34-
"algosdk": "^1.12.0",
35-
"aphrodite": "^2.4.0",
36-
"classnames": "^2.3.1",
37-
"react-async-hook": "^4.0.0",
38-
"@decentology/unstated-next": "^1.1.3"
39-
}
2+
"name": "@decentology/hyperverse-algorand",
3+
"source": "./source/index.ts",
4+
"main": "./distribution/index.js",
5+
"types": "./distribution/index.d.ts",
6+
"version": "1.0.10",
7+
"license": "MIT",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/decentology/hyperverse-mono"
11+
},
12+
"files": [
13+
"distribution"
14+
],
15+
"scripts": {
16+
"build": "parcel build",
17+
"clean": "rimraf ./distribution",
18+
"lint": "tsc --noEmit"
19+
},
20+
"peerDependencies": {
21+
"react": "^17.0.2"
22+
},
23+
"publishConfig": {
24+
"access": "public"
25+
},
26+
"devDependencies": {
27+
"@decentology/config": "^1.0.1",
28+
"parcel": "^2.2.1"
29+
},
30+
"dependencies": {
31+
"@decentology/hyperverse": "^1.0.10",
32+
"@json-rpc-tools/utils": "^1.7.6",
33+
"@walletconnect/client": "^1.7.1",
34+
"algorand-walletconnect-qrcode-modal": "^1.6.1",
35+
"algosdk": "^1.12.0",
36+
"aphrodite": "^2.4.0",
37+
"classnames": "^2.3.1",
38+
"react-async-hook": "^4.0.0",
39+
"@decentology/unstated-next": "^1.1.3"
40+
}
4041
}

packages/hyperverse-db/package.json

+20-17
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
{
2-
"name": "@decentology/hyperverse-db",
3-
"version": "1.0.0",
4-
"type": "module",
5-
"main": "index.ts",
6-
"license": "MIT",
7-
"private": true,
8-
"peerDependencies": {
9-
"react": "^17.0.2"
10-
},
11-
"dependencies": {
12-
"gun": "^0.2020.1235",
13-
"react-query": "^3.34.8",
14-
"react-use": "^17.3.2"
15-
},
16-
"devDependencies": {
17-
"@decentology/config": "^1.0.0"
18-
}
2+
"name": "@decentology/hyperverse-db",
3+
"version": "1.0.0",
4+
"type": "module",
5+
"main": "index.ts",
6+
"license": "MIT",
7+
"private": true,
8+
"peerDependencies": {
9+
"react": "^17.0.2"
10+
},
11+
"dependencies": {
12+
"gun": "^0.2020.1235",
13+
"react-query": "^3.34.8",
14+
"react-use": "^17.3.2"
15+
},
16+
"devDependencies": {
17+
"@decentology/config": "^1.0.0"
18+
},
19+
"scripts": {
20+
"lint": "tsc --noEmit"
21+
}
1922
}
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,52 @@
11
{
2-
"name": "@decentology/hyperverse-ethereum-randompick",
3-
"version": "1.0.12",
4-
"source": "./source/index.ts",
5-
"types": "./distribution/index.d.ts",
6-
"module": "./distribution/index.es.js",
7-
"main": "./distribution/index.js",
8-
"license": "MIT",
9-
"scripts": {
10-
"test": "hardhat test",
11-
"build": "parcel build",
12-
"clean": "rimraf ./distribution",
13-
"deploy": "run-p deploy-ethereum deploy-metis deploy-avalanche",
14-
"deploy-ethereum": "hardhat run scripts/deploy.js --network ethereum ",
15-
"deploy-metis": "hardhat run scripts/deploy.js --network metis",
16-
"deploy-avalanche": "hardhat run scripts/deploy.js --network avalanche"
17-
},
18-
"publishConfig": {
19-
"access": "public"
20-
},
21-
"peerDependencies": {
22-
"react": "^17.0.2"
23-
},
24-
"files": [
25-
"distribution",
26-
"utils"
27-
],
28-
"dependencies": {
29-
"@chainlink/contracts": "^0.4.0",
30-
"@decentology/hyperverse": "^1.0.10",
31-
"@decentology/hyperverse-ethereum": "^1.0.10",
32-
"@decentology/hyperverse-storage-skynet": "^1.0.9",
33-
"@decentology/unstated-next": "^1.1.3",
34-
"ethers": "^5.5.3",
35-
"react-query": "^3.34.7",
36-
"react-use": "^17.3.2",
37-
"skynet-js": "^4.0.23-beta"
38-
},
39-
"devDependencies": {
40-
"@decentology/config": "^1.0.1",
41-
"@nomiclabs/hardhat-ethers": "^2.0.4",
42-
"@nomiclabs/hardhat-waffle": "^2.0.2",
43-
"chai": "^4.3.4",
44-
"dotnet": "^1.1.4",
45-
"ethereum-waffle": "^3.4.0",
46-
"hardhat": "^2.8.3",
47-
"npm-run-all": "^4.1.5",
48-
"parcel": "^2.2.1",
49-
"rimraf": "^3.0.2"
50-
}
2+
"name": "@decentology/hyperverse-ethereum-randompick",
3+
"version": "1.0.12",
4+
"source": "./source/index.ts",
5+
"types": "./distribution/index.d.ts",
6+
"module": "./distribution/index.es.js",
7+
"main": "./distribution/index.js",
8+
"license": "MIT",
9+
"scripts": {
10+
"test": "hardhat test",
11+
"build": "parcel build",
12+
"clean": "rimraf ./distribution",
13+
"deploy": "run-p deploy-ethereum deploy-metis deploy-avalanche",
14+
"deploy-ethereum": "hardhat run scripts/deploy.js --network ethereum ",
15+
"deploy-metis": "hardhat run scripts/deploy.js --network metis",
16+
"deploy-avalanche": "hardhat run scripts/deploy.js --network avalanche",
17+
"lint": "tsc --noEmit"
18+
},
19+
"publishConfig": {
20+
"access": "public"
21+
},
22+
"peerDependencies": {
23+
"react": "^17.0.2"
24+
},
25+
"files": [
26+
"distribution",
27+
"utils"
28+
],
29+
"dependencies": {
30+
"@chainlink/contracts": "^0.4.0",
31+
"@decentology/hyperverse": "^1.0.10",
32+
"@decentology/hyperverse-ethereum": "^1.0.10",
33+
"@decentology/hyperverse-storage-skynet": "^1.0.9",
34+
"@decentology/unstated-next": "^1.1.3",
35+
"ethers": "^5.5.3",
36+
"react-query": "^3.34.7",
37+
"react-use": "^17.3.2",
38+
"skynet-js": "^4.0.23-beta"
39+
},
40+
"devDependencies": {
41+
"@decentology/config": "^1.0.1",
42+
"@nomiclabs/hardhat-ethers": "^2.0.4",
43+
"@nomiclabs/hardhat-waffle": "^2.0.2",
44+
"chai": "^4.3.4",
45+
"dotnet": "^1.1.4",
46+
"ethereum-waffle": "^3.4.0",
47+
"hardhat": "^2.8.3",
48+
"npm-run-all": "^4.1.5",
49+
"parcel": "^2.2.1",
50+
"rimraf": "^3.0.2"
51+
}
5152
}
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
{
2-
"name": "@decentology/hyperverse-ethereum-starterkit",
3-
"version": "1.0.0",
4-
"source": "./source/index.ts",
5-
"types": "./distribution/index.d.ts",
6-
"main": "./distribution/index.js",
7-
"private": true,
8-
"license": "MIT",
9-
"scripts": {
10-
"compile": "hardhat compile",
11-
"deploy": "hardhat run scripts/deploy.js --network rinkeby ",
12-
"test": "hardhat test",
13-
"build": "parcel build",
14-
"clean": "rimraf ./distribution"
15-
},
16-
"dependencies": {
17-
"@decentology/hyperverse": "^1.0.0",
18-
"@decentology/hyperverse-ethereum": "^1.0.0",
19-
"ethers": "^5.5.3",
20-
"react-query": "^3.34.7",
21-
"react-use": "^17.3.2",
22-
"@decentology/unstated-next": "^1.1.0"
23-
},
24-
"devDependencies": {
25-
"@decentology/config": "^1.0.0",
26-
"@nomiclabs/hardhat-ethers": "^2.0.4",
27-
"@nomiclabs/hardhat-waffle": "^2.0.2",
28-
"chai": "^4.3.4",
29-
"hardhat": "^2.8.3",
30-
"parcel": "^2.2.1",
31-
"rimraf": "^3.0.2"
32-
33-
}
2+
"name": "@decentology/hyperverse-ethereum-starterkit",
3+
"version": "1.0.0",
4+
"source": "./source/index.ts",
5+
"types": "./distribution/index.d.ts",
6+
"main": "./distribution/index.js",
7+
"private": true,
8+
"license": "MIT",
9+
"scripts": {
10+
"compile": "hardhat compile",
11+
"deploy": "hardhat run scripts/deploy.js --network rinkeby ",
12+
"test": "hardhat test",
13+
"build": "parcel build",
14+
"clean": "rimraf ./distribution",
15+
"lint": "tsc --noEmit"
16+
},
17+
"dependencies": {
18+
"@decentology/hyperverse": "^1.0.0",
19+
"@decentology/hyperverse-ethereum": "^1.0.0",
20+
"ethers": "^5.5.3",
21+
"react-query": "^3.34.7",
22+
"react-use": "^17.3.2",
23+
"@decentology/unstated-next": "^1.1.0"
24+
},
25+
"devDependencies": {
26+
"@decentology/config": "^1.0.0",
27+
"@nomiclabs/hardhat-ethers": "^2.0.4",
28+
"@nomiclabs/hardhat-waffle": "^2.0.2",
29+
"chai": "^4.3.4",
30+
"hardhat": "^2.8.3",
31+
"parcel": "^2.2.1",
32+
"rimraf": "^3.0.2"
33+
}
3434
}

0 commit comments

Comments
 (0)