Skip to content

Commit

Permalink
fix: package json
Browse files Browse the repository at this point in the history
  • Loading branch information
davidecarpini committed Oct 24, 2024
1 parent 0935f5c commit 83ba204
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 16 deletions.
1 change: 0 additions & 1 deletion examples/sample-angular-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
"@angular/compiler-cli": "^16.1.0",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"@vechain/repo-config": "https://github.com/vechain/repo-config#v0.0.1",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
Expand Down
1 change: 0 additions & 1 deletion examples/sample-svelte-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"@sveltejs/kit": "^1.27.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vechain/repo-config": "https://github.com/vechain/repo-config#v0.0.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.30.0",
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@changesets/cli": "^2.27.1",
"@commitlint/config-conventional": "^18.0.0",
"@vechain/repo-config": "https://github.com/vechain/repo-config#v0.0.1",
"commitlint": "^18.0.0",
"eslint": "^8.4.1",
"eslint-plugin-prefer-arrow": "1.2.3",
Expand Down
1 change: 0 additions & 1 deletion packages/dapp-kit-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
"@testing-library/react": "^14.1.2",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@vechain/repo-config": "https://github.com/vechain/repo-config#v0.0.1",
"eslint": "^8.15.0",
"react": "^18.2.0",
"tsup": "*",
Expand Down
1 change: 0 additions & 1 deletion packages/dapp-kit-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"@vechain/repo-config": "https://github.com/vechain/repo-config#v0.0.1",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.15.0",
"parcel": "^2.10.2",
Expand Down
1 change: 0 additions & 1 deletion packages/dapp-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
"devDependencies": {
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@vechain/repo-config": "https://github.com/vechain/repo-config#v0.0.1",
"@vitest/coverage-v8": "^0.34.6",
"@walletconnect/types": "2.10.2",
"eslint": "^8.15.0",
Expand Down
9 changes: 6 additions & 3 deletions prettier.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
const Config = require('@vechain/repo-config');

module.exports = Config.Prettier;
module.exports = {
$schema: 'http://json.schemastore.org/prettierrc',
singleQuote: true,
trailingComma: 'all',
tabWidth: 4,
};
3 changes: 0 additions & 3 deletions tests/e2e/.eslintrc.js → tests/e2e/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
const Config = require('@vechain/repo-config');

module.exports = {
...Config.EslintLibrary,
rules: {
'func-style': 'off',
'func-names': 'off',
Expand Down
1 change: 0 additions & 1 deletion tests/e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"@types/cucumber": "^7.0.0",
"@types/jest": "^29.5.12",
"@types/selenium-webdriver": "^4.1.13",
"@vechain/repo-config": "https://github.com/vechain/repo-config",
"async-mutex": "^0.2.6",
"selenium-webdriver": "4.8.2",
"testcontainers": "^10.7.2",
Expand Down
27 changes: 24 additions & 3 deletions tests/e2e/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,31 @@
{
"extends": "@vechain/repo-config/src/tsconfig/react.json",
"$schema": "https://json.schemastore.org/tsconfig",
"display": "React App",
"compilerOptions": {
"composite": false,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"inlineSources": false,
"isolatedModules": true,
"moduleResolution": "node",
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"skipLibCheck": true,
"strict": true,
"allowJs": true,
"incremental": true,
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "commonjs",
"noEmit": true,
"resolveJsonModule": true,
"target": "ES6",
"noImplicitAny": false,
"noImplicitThis": false,
"baseUrl": "src",
"esModuleInterop": true
"baseUrl": "src"
},
"include": ["src"]
}

0 comments on commit 83ba204

Please sign in to comment.