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