Skip to content

Commit

Permalink
bump: updated project deps (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
alessiofrittoli authored Jan 2, 2025
1 parent e9035d1 commit b845cb4
Show file tree
Hide file tree
Showing 5 changed files with 208 additions and 197 deletions.
36 changes: 21 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"types": "./dist/index.d.ts",
"files": [
"dist",
"scripts"
"scripts/postinstall"
],
"exports": {
".": {
Expand All @@ -53,18 +53,23 @@
},
"sideEffects": false,
"scripts": {
"postinstall": "node scripts/postinstall/index.js",
"build": "pnpm lint && pnpm test:ci && tsup",
"build:watch": "tsup --watch",
"lint": "eslint",
"test": "jest --watchAll --verbose",
"test:jsdom": "JSDOM=true pnpm test",
"postinstall": "node scripts/postinstall/index.js",
"release": "node scripts/publish.js --verbose --npm",
"test": "pnpm test:watch",
"test:watch": "jest --watchAll --verbose",
"test:jsdom": "JSDOM=true pnpm test:watch",
"test:ci": "jest --ci --verbose",
"test:ci:jsdom": "JSDOM=true pnpm test:ci",
"test:coverage": "pnpm test:watch --coverage",
"test:ci:coverage": "pnpm test:ci --coverage",
"test:serve-coverage": "http-server ./coverage/lcov-report --gzip true -p 0 -o --silent",
"test:coverage": "concurrently --prefix none --kill-others \"pnpm jest --watchAll --verbose --coverage\" \"pnpm test:serve-coverage\"",
"test:coverage:serve": "concurrently --prefix none --kill-others \"pnpm test:coverage\" \"pnpm test:serve-coverage\"",
"test:coverage:jsdom": "JSDOM=true pnpm test:coverage",
"test:jest": "pnpm test jest.test.ts",
"test:coverage:jsdom:serve": "JSDOM=true pnpm test:coverage:serve",
"test:jest": "pnpm test:watch jest.test.ts",
"test:jest:jsdom": "JSDOM=true pnpm test:jest",
"test:next-response": "pnpm test next-response.test.ts"
},
Expand All @@ -75,27 +80,28 @@
"@eslint/js": "^9.17.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"concurrently": "^9.1.0",
"@types/node": "^22.10.3",
"concurrently": "^9.1.2",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next": ">=14.0.0",
"next": ">=15.1.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
"typescript-eslint": "^8.19.0"
},
"dependencies": {
"@alessiofrittoli/chain-functions": "^1.0.1",
"@alessiofrittoli/exception": "^1.2.0",
"@alessiofrittoli/http-server-status": "^0.1.0",
"@alessiofrittoli/chain-functions": "^2.0.0",
"@alessiofrittoli/exception": "^2.0.0",
"@alessiofrittoli/http-server-status": "^1.0.0",
"@alessiofrittoli/node-scripts": "^2.2.1",
"@alessiofrittoli/post-install-scripts": "^0.3.0",
"@alessiofrittoli/type-utils": "^1.3.0",
"@alessiofrittoli/url-utils": "^0.1.0"
"@alessiofrittoli/type-utils": "^1.5.0",
"@alessiofrittoli/url-utils": "^1.0.0"
}
}
Loading

0 comments on commit b845cb4

Please sign in to comment.