Skip to content

Commit

Permalink
Merge branch 'main' into testing
Browse files Browse the repository at this point in the history
  • Loading branch information
shivaypiece authored Jan 18, 2024
2 parents 04a56ab + 19632cf commit 7758e6c
Showing 1 changed file with 25 additions and 10 deletions.
35 changes: 25 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,31 @@
"main": "src/index.tsx",
"scripts": {
"dev": "ts-node src/index.tsx",
"clean": "rm -r node_modules && rm package-lock.json",
"start": "react-scripts start",
"build": "react-scripts build",
"clean": "rimraf node_modules && rimraf package-lock.json",
"start": "cross-env react-scripts start",
"build": "cross-env react-scripts build",
"test": "jest"
},
"dependencies": {
"@pieces.app/pieces-os-client": "1.2.0",
"jest-environment-jsdom": "^29.7.0",
"@pieces.app/pieces-os-client": "1.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"ts-node": "^10.9.1"
"ts-node": "^10.9.1",
"jest-environment-jsdom": "^29.7.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.8.7",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
"typescript": "^4.9.5",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
},
"browserslist": {
"production": [
Expand All @@ -38,6 +40,19 @@
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"plugins": [
"@babel/plugin-transform-private-methods",
"@babel/plugin-transform-numeric-separator",
"@babel/plugin-transform-nullish-coalescing-operator",
"@babel/plugin-transform-class-properties",
"@babel/plugin-transform-optional-chaining",
"@rollup/plugin-terser"
]
},
"overrides": {
"typescript": "^4.9.5",
"postcss": "^8.4.33",
"nth-check": "^2.1.0"
}
}

0 comments on commit 7758e6c

Please sign in to comment.