2021-05-28 13:50:42 +02:00
|
|
|
{
|
2023-11-28 15:17:23 +01:00
|
|
|
"name": "common",
|
2021-05-28 13:50:42 +02:00
|
|
|
"version": "1.0.0",
|
|
|
|
"license": "MPL-2.0",
|
2023-11-27 12:28:28 +01:00
|
|
|
"author": "Kaleidos INC",
|
|
|
|
"private": true,
|
2024-07-31 16:26:37 +02:00
|
|
|
"packageManager": "yarn@4.3.1",
|
2024-11-18 14:55:13 +01:00
|
|
|
"type": "module",
|
2023-11-27 12:28:28 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/penpot/penpot"
|
|
|
|
},
|
2021-05-28 13:50:42 +02:00
|
|
|
"dependencies": {
|
2024-05-31 13:28:32 +02:00
|
|
|
"luxon": "^3.4.4",
|
|
|
|
"sax": "^1.4.1"
|
2021-05-28 13:50:42 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-11-18 14:55:13 +01:00
|
|
|
"concurrently": "^9.0.1",
|
|
|
|
"nodemon": "^3.1.7",
|
2024-10-18 09:57:41 +02:00
|
|
|
"shadow-cljs": "2.28.18",
|
2022-12-27 14:29:14 +01:00
|
|
|
"source-map-support": "^0.5.21",
|
2024-05-31 13:28:32 +02:00
|
|
|
"ws": "^8.17.0"
|
2023-11-28 15:17:23 +01:00
|
|
|
},
|
2023-11-27 12:28:28 +01:00
|
|
|
"scripts": {
|
|
|
|
"fmt:clj:check": "cljfmt check --parallel=false src/ test/",
|
|
|
|
"fmt:clj": "cljfmt fix --parallel=true src/ test/",
|
2024-10-29 19:06:36 +01:00
|
|
|
"lint:clj": "clj-kondo --parallel=true --lint src/",
|
2024-11-18 14:55:13 +01:00
|
|
|
"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"
|
2023-11-27 12:28:28 +01:00
|
|
|
}
|
2021-05-28 13:50:42 +02:00
|
|
|
}
|