mirror of
https://github.com/penpot/penpot.git
synced 2025-01-04 13:50:12 -05:00
27690c3da6
In the same way as frontend tests are run and fix some tokens related tests
33 lines
999 B
JSON
33 lines
999 B
JSON
{
|
|
"name": "common",
|
|
"version": "1.0.0",
|
|
"license": "MPL-2.0",
|
|
"author": "Kaleidos INC",
|
|
"private": true,
|
|
"packageManager": "yarn@4.3.1",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/penpot/penpot"
|
|
},
|
|
"dependencies": {
|
|
"luxon": "^3.4.4",
|
|
"sax": "^1.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.0.1",
|
|
"nodemon": "^3.1.7",
|
|
"shadow-cljs": "2.28.18",
|
|
"source-map-support": "^0.5.21",
|
|
"ws": "^8.17.0"
|
|
},
|
|
"scripts": {
|
|
"fmt:clj:check": "cljfmt check --parallel=false src/ test/",
|
|
"fmt:clj": "cljfmt fix --parallel=true src/ test/",
|
|
"lint:clj": "clj-kondo --parallel=true --lint src/",
|
|
"lint": "yarn 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": "yarn run build:test && node target/tests/test.js"
|
|
}
|
|
}
|