mirror of
https://github.com/penpot/penpot.git
synced 2026-08-29 16:18:48 +00:00
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@12.0.0+sha512.9e2e3dc3911995868dc94b8175c217c27e95408fa03b4a22749778f2b34f773b77cdd3b39ede8171b22fcd53be6a35342e9fac9948a68ef58df6488ce89a7e67",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/penpot/penpot"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^10.0.5",
|
|
"nodemon": "^3.1.14",
|
|
"prettier": "3.9.6",
|
|
"source-map-support": "^0.5.21",
|
|
"ws": "^8.21.3"
|
|
},
|
|
"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"
|
|
}
|
|
}
|