2015-06-18 19:35:50 +02:00
|
|
|
{
|
2023-11-28 15:17:23 +01:00
|
|
|
"name": "frontend",
|
|
|
|
"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",
|
2020-02-25 16:18:55 +01:00
|
|
|
"browserslist": [
|
|
|
|
"defaults"
|
|
|
|
],
|
2023-12-21 11:37:42 +01:00
|
|
|
"type": "module",
|
2023-11-27 12:28:28 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/penpot/penpot"
|
|
|
|
},
|
2023-11-29 11:24:53 +01:00
|
|
|
"resolutions": {
|
|
|
|
"@vitejs/plugin-react": "^4.2.0"
|
|
|
|
},
|
2021-01-22 14:33:44 +01:00
|
|
|
"scripts": {
|
2024-08-05 11:29:14 +02:00
|
|
|
"build:app:assets": "node ./scripts/build-app-assets.js",
|
|
|
|
"build:storybook": "yarn run build:storybook:assets && yarn run build:storybook:cljs && storybook build",
|
|
|
|
"build:storybook:assets": "node ./scripts/build-storybook-assets.js",
|
|
|
|
"build:storybook:cljs": "clojure -M:dev:shadow-cljs release storybook",
|
2024-09-13 15:14:10 +02:00
|
|
|
"build:renderer": "yarn run wasm-pack build ./renderer --target web --out-dir ../resources/public/js/renderer --release",
|
2024-08-05 11:29:14 +02:00
|
|
|
"e2e:server": "node ./scripts/e2e-server.js",
|
2023-11-27 12:28:28 +01:00
|
|
|
"fmt:clj": "cljfmt fix --parallel=true src/ test/",
|
2024-08-05 11:29:14 +02:00
|
|
|
"fmt:clj:check": "cljfmt check --parallel=false src/ test/",
|
2024-06-28 10:41:48 +02:00
|
|
|
"fmt:js": "yarn run prettier -c src/**/*.stories.jsx -c playwright/**/*.js -c scripts/**/*.js -w",
|
2024-08-05 11:29:14 +02:00
|
|
|
"fmt:js:check": "yarn run prettier -c src/**/*.stories.jsx -c playwright/**/*.js -c scripts/**/*.js",
|
|
|
|
"lint:clj": "clj-kondo --parallel --lint src/",
|
2023-05-29 18:21:48 +02:00
|
|
|
"lint:scss": "yarn run prettier -c resources/styles -c src/**/*.scss",
|
2023-11-29 16:22:56 +01:00
|
|
|
"lint:scss:fix": "yarn run prettier -c resources/styles -c src/**/*.scss -w",
|
2024-08-05 11:29:14 +02:00
|
|
|
"test": "yarn run test:compile && yarn run test:run",
|
2024-03-01 15:23:35 +01:00
|
|
|
"test:compile": "clojure -M:dev:shadow-cljs compile test --config-merge '{:autorun false}'",
|
2023-12-21 11:37:42 +01:00
|
|
|
"test:run": "node target/tests.cjs",
|
2023-05-29 18:21:48 +02:00
|
|
|
"test:watch": "clojure -M:dev:shadow-cljs watch test",
|
2024-10-09 12:26:04 +02:00
|
|
|
"test:e2e": "playwright test --project default",
|
2024-07-02 15:09:31 +02:00
|
|
|
"translations": "node ./scripts/translations.js",
|
2024-08-05 11:29:14 +02:00
|
|
|
"watch": "yarn run watch:app:assets",
|
|
|
|
"watch:app:assets": "node ./scripts/watch.js",
|
|
|
|
"watch:storybook": "concurrently \"clojure -M:dev:shadow-cljs watch storybook\" \"storybook dev -p 6006 --no-open\" \"yarn run watch:storybook:assets\"",
|
|
|
|
"watch:storybook:assets": "node ./scripts/watch-storybook.js"
|
2021-01-22 14:33:44 +01:00
|
|
|
},
|
2020-03-29 14:33:54 +02:00
|
|
|
"devDependencies": {
|
2024-05-31 12:34:07 +02:00
|
|
|
"@playwright/test": "1.44.1",
|
2024-07-12 10:42:36 +02:00
|
|
|
"@storybook/addon-essentials": "^8.2.2",
|
2024-07-12 11:52:31 +02:00
|
|
|
"@storybook/addon-themes": "^8.2.2",
|
2024-07-12 10:42:36 +02:00
|
|
|
"@storybook/blocks": "^8.2.2",
|
|
|
|
"@storybook/react": "^8.2.2",
|
|
|
|
"@storybook/react-vite": "^8.2.2",
|
2024-02-26 17:21:16 +01:00
|
|
|
"@types/node": "^20.11.20",
|
2024-05-31 12:59:11 +02:00
|
|
|
"autoprefixer": "^10.4.19",
|
2023-11-27 12:27:01 +01:00
|
|
|
"concurrently": "^8.2.2",
|
2024-05-22 19:45:39 +02:00
|
|
|
"draft-js": "git+https://github.com/penpot/draft-js.git#commit=4a99b2a6020b2af97f6dc5fa1b4275ec16b559a0",
|
2024-04-23 15:49:57 +02:00
|
|
|
"express": "^4.19.2",
|
2024-01-11 12:56:48 +01:00
|
|
|
"fancy-log": "^2.0.0",
|
2024-06-13 11:45:01 +02:00
|
|
|
"getopts": "^2.3.0",
|
2024-02-26 17:25:38 +01:00
|
|
|
"gettext-parser": "^8.0.0",
|
2019-05-31 13:50:55 +02:00
|
|
|
"gulp": "4.0.2",
|
2020-11-21 00:14:59 +01:00
|
|
|
"gulp-concat": "^2.6.1",
|
2019-05-31 13:50:55 +02:00
|
|
|
"gulp-gzip": "^1.4.2",
|
2020-04-16 10:40:30 +02:00
|
|
|
"gulp-mustache": "^5.0.0",
|
2024-02-26 17:25:38 +01:00
|
|
|
"gulp-postcss": "^10.0.0",
|
2020-01-11 15:59:31 +00:00
|
|
|
"gulp-rename": "^2.0.0",
|
2022-02-03 12:57:49 +01:00
|
|
|
"gulp-sass": "^5.1.0",
|
2020-11-12 13:35:20 +01:00
|
|
|
"gulp-sourcemaps": "^3.0.0",
|
2023-08-31 09:20:22 +02:00
|
|
|
"gulp-svg-sprite": "^2.0.3",
|
2024-05-31 12:59:11 +02:00
|
|
|
"jsdom": "^24.1.0",
|
2020-11-12 13:35:20 +01:00
|
|
|
"map-stream": "0.0.7",
|
2024-05-31 12:59:11 +02:00
|
|
|
"marked": "^12.0.2",
|
2023-08-31 09:20:22 +02:00
|
|
|
"mkdirp": "^3.0.1",
|
2024-03-01 15:23:35 +01:00
|
|
|
"mustache": "^4.2.0",
|
2024-05-31 12:59:11 +02:00
|
|
|
"nodemon": "^3.1.2",
|
2021-10-20 11:08:10 +02:00
|
|
|
"npm-run-all": "^4.1.5",
|
2024-03-01 15:23:35 +01:00
|
|
|
"p-limit": "^5.0.0",
|
2024-05-31 12:59:11 +02:00
|
|
|
"postcss": "^8.4.38",
|
2021-03-05 15:19:04 +01:00
|
|
|
"postcss-clean": "^1.2.2",
|
2024-06-28 10:04:04 +02:00
|
|
|
"prettier": "3.3.2",
|
2024-03-01 15:23:35 +01:00
|
|
|
"pretty-time": "^1.1.0",
|
2023-11-24 12:24:47 +01:00
|
|
|
"prop-types": "^15.8.1",
|
2024-05-31 12:59:11 +02:00
|
|
|
"rimraf": "^5.0.7",
|
|
|
|
"sass": "^1.77.4",
|
|
|
|
"sass-embedded": "^1.77.2",
|
2024-07-31 16:27:03 +02:00
|
|
|
"shadow-cljs": "2.28.11",
|
2024-07-12 10:42:36 +02:00
|
|
|
"storybook": "^8.2.2",
|
2024-05-31 12:59:11 +02:00
|
|
|
"svg-sprite": "^2.0.4",
|
|
|
|
"typescript": "^5.4.5",
|
2024-02-26 17:21:16 +01:00
|
|
|
"vite": "^5.1.4",
|
2024-03-01 15:23:35 +01:00
|
|
|
"vitest": "^1.3.1",
|
2024-09-10 16:58:18 +02:00
|
|
|
"wasm-pack": "^0.13.0",
|
2024-05-31 12:59:11 +02:00
|
|
|
"watcher": "^2.3.1",
|
|
|
|
"workerpool": "^9.1.1"
|
2020-03-29 14:33:54 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-06-06 07:48:41 +02:00
|
|
|
"compression": "^1.7.4",
|
2024-05-31 12:59:11 +02:00
|
|
|
"date-fns": "^3.6.0",
|
2024-02-26 19:41:33 +01:00
|
|
|
"eventsource-parser": "^1.1.2",
|
2023-12-21 11:37:42 +01:00
|
|
|
"highlight.js": "^11.9.0",
|
2024-02-26 19:41:33 +01:00
|
|
|
"js-beautify": "^1.15.1",
|
2022-12-27 14:29:14 +01:00
|
|
|
"jszip": "^3.10.1",
|
2024-09-06 12:29:48 +02:00
|
|
|
"lodash": "^4.17.21",
|
2023-12-21 11:37:42 +01:00
|
|
|
"luxon": "^3.4.4",
|
2020-04-02 20:01:49 +02:00
|
|
|
"mousetrap": "^1.6.5",
|
2021-11-03 13:09:20 +01:00
|
|
|
"opentype.js": "^1.3.4",
|
2023-03-06 14:13:21 +01:00
|
|
|
"postcss-modules": "^6.0.0",
|
2020-08-05 14:40:44 +02:00
|
|
|
"randomcolor": "^0.6.2",
|
2024-05-31 11:55:29 +02:00
|
|
|
"react": "18.3.1",
|
|
|
|
"react-dom": "18.3.1",
|
2024-08-21 11:10:16 +02:00
|
|
|
"react-error-boundary": "^4.0.13",
|
2023-12-21 11:37:42 +01:00
|
|
|
"react-virtualized": "^9.22.5",
|
2024-02-26 19:41:33 +01:00
|
|
|
"rxjs": "8.0.0-alpha.14",
|
2024-05-31 12:59:11 +02:00
|
|
|
"sax": "^1.4.1",
|
2021-11-24 11:30:09 +01:00
|
|
|
"source-map-support": "^0.5.21",
|
2022-07-12 08:17:50 +02:00
|
|
|
"tdigest": "^0.1.2",
|
2024-05-31 12:59:11 +02:00
|
|
|
"ua-parser-js": "^1.0.38",
|
2022-07-12 08:17:50 +02:00
|
|
|
"xregexp": "^5.1.1"
|
2023-11-27 12:28:28 +01:00
|
|
|
}
|
2015-06-18 19:35:50 +02:00
|
|
|
}
|