[READ-ONLY] Mirror of https://github.com/wojtekmaj/react-clock. An analog clock for your React app. projects.wojtekmaj.pl/react-clock
analog-clock clock digital-clock react time
0

Configure Feed

Select the types of activity you want to include in your feed.

react-clock / package.json
698 B 24 lines
1{ 2 "name": "react-clock-monorepo", 3 "version": "1.0.0", 4 "description": "react-clock monorepo", 5 "type": "module", 6 "workspaces": [ 7 "packages/*", 8 "test" 9 ], 10 "scripts": { 11 "build": "yarn workspace react-clock build", 12 "dev": "yarn workspace react-clock watch & yarn workspace test dev", 13 "format": "yarn workspaces foreach --all run format", 14 "lint": "yarn workspaces foreach --all run lint", 15 "postinstall": "husky", 16 "test": "yarn workspaces foreach --all run test", 17 "tsc": "yarn workspaces foreach --all run tsc", 18 "unit": "yarn workspaces foreach --all run unit" 19 }, 20 "devDependencies": { 21 "husky": "^9.0.0" 22 }, 23 "packageManager": "yarn@4.17.1" 24}