mirror of
https://github.com/penpot/penpot.git
synced 2026-08-01 10:01:38 -04:00
* ⬆️ Update root pnpm depdendencies * ⬆️ Update common pnpm dependencies * ⬆️ Upgrade docs pnpm dependencies * ⬆️ Upgrade pnpm deps on library * ⬆️ Upgrade plugins pnpm dependencies * ⬆️ Update pnpm dependencies on mcp * ⬆️ Update pnpm dependencies on frontend * ⬆️ Update exporter pnpm dependencies * ⬆️ Update jvm/clojure deps * ⬆️ Update docker dependencies (jvm and node) * 📎 Add minor fixes
37 lines
1.3 KiB
JSON
37 lines
1.3 KiB
JSON
{
|
|
"name": "common",
|
|
"version": "1.0.0",
|
|
"license": "MPL-2.0",
|
|
"author": "Kaleidos INC Sucursal en España SL",
|
|
"private": true,
|
|
"packageManager": "pnpm@11.18.0+sha512.33d83c77da82f49fba836925c6f1b841181ec3132b670639bd012f7075f5c7cf634c5f870147c19aae7478fac01df09d8892e880454896edd23ee9b33757563c",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/penpot/penpot"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^10.0.4",
|
|
"nodemon": "^3.1.14",
|
|
"prettier": "3.9.6",
|
|
"source-map-support": "^0.5.21",
|
|
"ws": "^8.21.1"
|
|
},
|
|
"dependencies": {
|
|
"date-fns": "^4.4.0"
|
|
},
|
|
"scripts": {
|
|
"lint:clj": "clj-kondo --config-dir ../.clj-kondo --lint src/",
|
|
"lint:js": "exit 0",
|
|
"check-fmt:clj": "cljfmt check --parallel=true src/ test/",
|
|
"check-fmt:js": "prettier -c src/**/*.js",
|
|
"fmt:clj": "cljfmt fix --parallel=true src/ test/",
|
|
"fmt:js": "prettier -c src/**/*.js -w",
|
|
"lint": "pnpm run lint:clj",
|
|
"watch:test": "concurrently \"clojure -M:dev:shadow-cljs watch test\" \"nodemon -C -d 2 -w target/tests/ --exec 'node target/tests/test.js'\"",
|
|
"build:test": "clojure -M:dev:shadow-cljs compile test",
|
|
"test": "pnpm run build:test && node target/tests/test.js",
|
|
"test:quiet": "node ./scripts/test-quiet.js"
|
|
}
|
|
}
|