Skip to content

Commit

Permalink
chore: formatting and package lock
Browse files Browse the repository at this point in the history
  • Loading branch information
krpeacock committed Jan 23, 2024
1 parent e726552 commit aff7520
Show file tree
Hide file tree
Showing 22 changed files with 849 additions and 62 deletions.
36 changes: 35 additions & 1 deletion e2e/browser/package.json
Original file line number Diff line number Diff line change
@@ -1 +1,35 @@
{"private":true,"name":"@do-not-publish/ic-cypress-e2e-tests","version":"0.21.2","scripts":{"ci":"npm run e2e","setup":"dfx deploy; dfx generate; pm2 --name parcel start npm -- start","cypress":"cypress run","e2e":"npm run cypress","poste2e":"pm2 kill","eslint:fix":"npm run lint -- --fix","eslint":"eslint --ext '.js,.jsx,.ts,.tsx' cypress *.js","lint":"npm run eslint","build":"","lint:fix":"npm run lint -- --fix","test:coverage":"","test":"","start":"parcel src/index.html"},"devDependencies":{"@types/node":"^18.0.6","concurrently":"^7.3.0","cypress":"^13.2.0","esbuild":"^0.15.16","parcel":"^2.6.2","pm2":"^5.3.0","size-limit":"^8.1.0"},"dependencies":{"@dfinity/agent":"^0.21.2","@dfinity/identity":"^0.21.2","@dfinity/principal":"^0.21.2","idb-keyval":"^6.2.0"}}
{
"private": true,
"name": "@do-not-publish/ic-cypress-e2e-tests",
"version": "0.21.2",
"scripts": {
"ci": "npm run e2e",
"setup": "dfx deploy; dfx generate; pm2 --name parcel start npm -- start",
"cypress": "cypress run",
"e2e": "npm run cypress",
"poste2e": "pm2 kill",
"eslint:fix": "npm run lint -- --fix",
"eslint": "eslint --ext '.js,.jsx,.ts,.tsx' cypress *.js",
"lint": "npm run eslint",
"build": "",
"lint:fix": "npm run lint -- --fix",
"test:coverage": "",
"test": "",
"start": "parcel src/index.html"
},
"devDependencies": {
"@types/node": "^18.0.6",
"concurrently": "^7.3.0",
"cypress": "^13.2.0",
"esbuild": "^0.15.16",
"parcel": "^2.6.2",
"pm2": "^5.3.0",
"size-limit": "^8.1.0"
},
"dependencies": {
"@dfinity/agent": "^0.21.2",
"@dfinity/identity": "^0.21.2",
"@dfinity/principal": "^0.21.2",
"idb-keyval": "^6.2.0"
}
}
49 changes: 48 additions & 1 deletion e2e/node/package.json
Original file line number Diff line number Diff line change
@@ -1 +1,48 @@
{"private":true,"name":"@do-not-publish/ic-node-e2e-tests","version":"0.21.2","type":"module","scripts":{"ci":"npm run e2e","e2e":"vitest","eslint:fix":"npm run lint -- --fix","eslint":"eslint --ext '.js,.jsx,.ts,.tsx' basic canisters utils *.ts","lint":"npm run eslint","mitm":"MITM=true vitest ./basic/mitm.test.ts","build":"","lint:fix":"npm run lint -- --fix","test:coverage":"","test":""},"dependencies":{"@dfinity/agent":"^0.21.2","@dfinity/assets":"^0.21.2","@dfinity/identity":"^0.21.2","@dfinity/principal":"^0.21.2","whatwg-fetch":"^3.6.2"},"devDependencies":{"@peculiar/webcrypto":"^1.4.0","@trust/webcrypto":"^0.9.2","@tsconfig/node16":"^1.0.3","@tsconfig/node17":"^1.0.1","@types/base64-js":"^1.3.0","@types/isomorphic-fetch":"^0.0.36","@types/text-encoding":"^0.0.36","@typescript-eslint/eslint-plugin":"^5.30.5","@typescript-eslint/parser":"^5.30.5","esbuild":"^0.15.16","eslint":"^8.19.0","eslint-plugin-jsdoc":"^39.3.3","isomorphic-fetch":"^3.0.0","locus":"^2.0.4","node-webcrypto-p11":"^2.5.0","size-limit":"^8.2.6","text-encoding":"^0.7.0","ts-node":"^10.8.2","typescript":"^5.2.2","vitest":"^0.34.6","webcrypto-core":"^1.7.5"}}
{
"private": true,
"name": "@do-not-publish/ic-node-e2e-tests",
"version": "0.21.2",
"type": "module",
"scripts": {
"ci": "npm run e2e",
"e2e": "vitest",
"eslint:fix": "npm run lint -- --fix",
"eslint": "eslint --ext '.js,.jsx,.ts,.tsx' basic canisters utils *.ts",
"lint": "npm run eslint",
"mitm": "MITM=true vitest ./basic/mitm.test.ts",
"build": "",
"lint:fix": "npm run lint -- --fix",
"test:coverage": "",
"test": ""
},
"dependencies": {
"@dfinity/agent": "^0.21.2",
"@dfinity/assets": "^0.21.2",
"@dfinity/identity": "^0.21.2",
"@dfinity/principal": "^0.21.2",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@peculiar/webcrypto": "^1.4.0",
"@trust/webcrypto": "^0.9.2",
"@tsconfig/node16": "^1.0.3",
"@tsconfig/node17": "^1.0.1",
"@types/base64-js": "^1.3.0",
"@types/isomorphic-fetch": "^0.0.36",
"@types/text-encoding": "^0.0.36",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"esbuild": "^0.15.16",
"eslint": "^8.19.0",
"eslint-plugin-jsdoc": "^39.3.3",
"isomorphic-fetch": "^3.0.0",
"locus": "^2.0.4",
"node-webcrypto-p11": "^2.5.0",
"size-limit": "^8.2.6",
"text-encoding": "^0.7.0",
"ts-node": "^10.8.2",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"webcrypto-core": "^1.7.5"
}
}
4 changes: 2 additions & 2 deletions e2e/node/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"skipLibCheck": true,
"esModuleInterop": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"forceConsistentCasingInFileNames": true
},
"references": [{ "path": "../../packages/agent" }, { "path": "../../packages/identity" }],
"references": [{ "path": "../../packages/agent" }, { "path": "../../packages/identity" }]
}
56 changes: 28 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit aff7520

Please sign in to comment.