2015-06-18 12:35:50 -05:00
|
|
|
{
|
2023-11-28 09:17:23 -05:00
|
|
|
"name": "frontend",
|
|
|
|
"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",
|
2020-02-25 10:18:55 -05:00
|
|
|
"browserslist": [
|
|
|
|
"defaults"
|
|
|
|
],
|
2023-12-21 05:37:42 -05:00
|
|
|
"type": "module",
|
2023-11-27 06:28:28 -05:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/penpot/penpot"
|
|
|
|
},
|
2023-11-29 05:24:53 -05:00
|
|
|
"resolutions": {
|
|
|
|
"@vitejs/plugin-react": "^4.2.0"
|
|
|
|
},
|
2021-01-22 08:33:44 -05:00
|
|
|
"scripts": {
|
2024-08-05 04:29:14 -05: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",
|
2024-10-11 05:11:37 -05:00
|
|
|
"build:storybook:cljs": "clojure -M:dev:shadow-cljs compile storybook",
|
2024-11-05 07:21:32 -05:00
|
|
|
"build:app:libs": "node ./scripts/build-libs.js",
|
|
|
|
"build:app:main": "clojure -M:dev:shadow-cljs release main worker",
|
|
|
|
"build:app": "yarn run build:app:main && yarn run build:app:libs",
|
2024-08-05 04:29:14 -05:00
|
|
|
"e2e:server": "node ./scripts/e2e-server.js",
|
2023-11-27 06:28:28 -05:00
|
|
|
"fmt:clj": "cljfmt fix --parallel=true src/ test/",
|
2024-08-05 04:29:14 -05:00
|
|
|
"fmt:clj:check": "cljfmt check --parallel=false src/ test/",
|
2024-06-28 03:41:48 -05:00
|
|
|
"fmt:js": "yarn run prettier -c src/**/*.stories.jsx -c playwright/**/*.js -c scripts/**/*.js -w",
|
2024-08-05 04:29:14 -05: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 11:21:48 -05:00
|
|
|
"lint:scss": "yarn run prettier -c resources/styles -c src/**/*.scss",
|
2023-11-29 10:22:56 -05:00
|
|
|
"lint:scss:fix": "yarn run prettier -c resources/styles -c src/**/*.scss -w",
|
2024-10-31 10:43:20 -05:00
|
|
|
"build:test": "clojure -M:dev:shadow-cljs compile test-esm",
|
|
|
|
"test": "yarn run build:test && node target/tests/test.js",
|
|
|
|
"watch:test": "concurrently \"clojure -M:dev:shadow-cljs watch test-esm\" \"nodemon -w target/tests/test.js --exec 'sleep 2 && node target/tests/test.js'\"",
|
2024-10-09 05:26:04 -05:00
|
|
|
"test:e2e": "playwright test --project default",
|
2024-07-02 08:09:31 -05:00
|
|
|
"translations": "node ./scripts/translations.js",
|
2024-08-05 04:29:14 -05:00
|
|
|
"watch:app:assets": "node ./scripts/watch.js",
|
2024-11-05 07:21:32 -05:00
|
|
|
"watch:app:libs": "node ./scripts/build-libs.js --watch",
|
|
|
|
"watch:app:main": "clojure -M:dev:shadow-cljs watch main worker",
|
|
|
|
"watch:app": "concurrently \"yarn run watch:app:main\" \"yarn run watch:app:libs\"",
|
|
|
|
"watch": "yarn run watch:app:assets",
|
2024-08-05 04:29:14 -05:00
|
|
|
"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 08:33:44 -05:00
|
|
|
},
|
2020-03-29 07:33:54 -05:00
|
|
|
"devDependencies": {
|
2024-10-20 17:09:03 -05:00
|
|
|
"@playwright/test": "1.48.1",
|
|
|
|
"@storybook/addon-essentials": "^8.3.6",
|
|
|
|
"@storybook/addon-themes": "^8.3.6",
|
|
|
|
"@storybook/blocks": "^8.3.6",
|
|
|
|
"@storybook/react": "^8.3.6",
|
|
|
|
"@storybook/react-vite": "^8.3.6",
|
|
|
|
"@types/node": "^22.7.7",
|
|
|
|
"autoprefixer": "^10.4.20",
|
|
|
|
"concurrently": "^9.0.1",
|
2024-10-31 10:43:20 -05:00
|
|
|
"esbuild": "^0.24.0",
|
2024-10-20 17:09:03 -05:00
|
|
|
"express": "^4.21.1",
|
2024-01-11 06:56:48 -05:00
|
|
|
"fancy-log": "^2.0.0",
|
2024-06-13 04:45:01 -05:00
|
|
|
"getopts": "^2.3.0",
|
2024-02-26 11:25:38 -05:00
|
|
|
"gettext-parser": "^8.0.0",
|
2020-11-20 18:14:59 -05:00
|
|
|
"gulp-concat": "^2.6.1",
|
2019-05-31 06:50:55 -05:00
|
|
|
"gulp-gzip": "^1.4.2",
|
2020-04-16 03:40:30 -05:00
|
|
|
"gulp-mustache": "^5.0.0",
|
2024-02-26 11:25:38 -05:00
|
|
|
"gulp-postcss": "^10.0.0",
|
2020-01-11 10:59:31 -05:00
|
|
|
"gulp-rename": "^2.0.0",
|
2022-02-03 06:57:49 -05:00
|
|
|
"gulp-sass": "^5.1.0",
|
2020-11-12 07:35:20 -05:00
|
|
|
"gulp-sourcemaps": "^3.0.0",
|
2023-08-31 02:20:22 -05:00
|
|
|
"gulp-svg-sprite": "^2.0.3",
|
2024-10-20 17:09:03 -05:00
|
|
|
"jsdom": "^25.0.1",
|
2020-11-12 07:35:20 -05:00
|
|
|
"map-stream": "0.0.7",
|
2024-10-20 17:09:03 -05:00
|
|
|
"marked": "^14.1.3",
|
2023-08-31 02:20:22 -05:00
|
|
|
"mkdirp": "^3.0.1",
|
2024-03-01 09:23:35 -05:00
|
|
|
"mustache": "^4.2.0",
|
2024-10-20 17:09:03 -05:00
|
|
|
"nodemon": "^3.1.7",
|
2021-10-20 04:08:10 -05:00
|
|
|
"npm-run-all": "^4.1.5",
|
2024-10-20 17:09:03 -05:00
|
|
|
"p-limit": "^6.1.0",
|
|
|
|
"postcss": "^8.4.47",
|
2021-03-05 09:19:04 -05:00
|
|
|
"postcss-clean": "^1.2.2",
|
2024-10-20 17:09:03 -05:00
|
|
|
"prettier": "3.3.3",
|
2024-03-01 09:23:35 -05:00
|
|
|
"pretty-time": "^1.1.0",
|
2023-11-24 06:24:47 -05:00
|
|
|
"prop-types": "^15.8.1",
|
2024-10-20 17:09:03 -05:00
|
|
|
"rimraf": "^6.0.1",
|
|
|
|
"sass": "^1.80.3",
|
|
|
|
"sass-embedded": "^1.80.3",
|
|
|
|
"shadow-cljs": "2.28.18",
|
|
|
|
"storybook": "^8.3.6",
|
2024-05-31 05:59:11 -05:00
|
|
|
"svg-sprite": "^2.0.4",
|
2024-10-20 17:09:03 -05:00
|
|
|
"typescript": "^5.6.3",
|
|
|
|
"vite": "^5.4.9",
|
|
|
|
"vitest": "^2.1.3",
|
2024-09-10 09:58:18 -05:00
|
|
|
"wasm-pack": "^0.13.0",
|
2024-05-31 05:59:11 -05:00
|
|
|
"watcher": "^2.3.1",
|
2024-10-20 17:09:03 -05:00
|
|
|
"workerpool": "^9.2.0"
|
2020-03-29 07:33:54 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-10-31 10:43:20 -05:00
|
|
|
"@penpot/draft-js": "file:./vendor/draft-js",
|
|
|
|
"@penpot/hljs": "file:./vendor/hljs",
|
|
|
|
"@penpot/mousetrap": "file:./vendor/mousetrap",
|
|
|
|
"@penpot/svgo": "penpot/svgo#c6fba7a4dcfbc27b643e7fc0c94fc98cf680b77b",
|
2024-11-05 07:21:32 -05:00
|
|
|
"@penpot/text-editor": "penpot/penpot-text-editor#449e3322f3fa40b1318c9154afbbc7932a3cb766",
|
2024-06-06 00:48:41 -05:00
|
|
|
"compression": "^1.7.4",
|
2024-10-20 17:09:03 -05:00
|
|
|
"date-fns": "^4.1.0",
|
|
|
|
"eventsource-parser": "^3.0.0",
|
2024-02-26 13:41:33 -05:00
|
|
|
"js-beautify": "^1.15.1",
|
2022-12-27 08:29:14 -05:00
|
|
|
"jszip": "^3.10.1",
|
2024-09-06 05:29:48 -05:00
|
|
|
"lodash": "^4.17.21",
|
2024-10-20 17:09:03 -05:00
|
|
|
"luxon": "^3.5.0",
|
2021-11-03 07:09:20 -05:00
|
|
|
"opentype.js": "^1.3.4",
|
2023-03-06 08:13:21 -05:00
|
|
|
"postcss-modules": "^6.0.0",
|
2020-08-05 07:40:44 -05:00
|
|
|
"randomcolor": "^0.6.2",
|
2024-05-31 04:55:29 -05:00
|
|
|
"react": "18.3.1",
|
|
|
|
"react-dom": "18.3.1",
|
2024-10-20 17:09:03 -05:00
|
|
|
"react-error-boundary": "^4.1.2",
|
2023-12-21 05:37:42 -05:00
|
|
|
"react-virtualized": "^9.22.5",
|
2024-02-26 13:41:33 -05:00
|
|
|
"rxjs": "8.0.0-alpha.14",
|
2024-05-31 05:59:11 -05:00
|
|
|
"sax": "^1.4.1",
|
2021-11-24 05:30:09 -05:00
|
|
|
"source-map-support": "^0.5.21",
|
2022-07-12 01:17:50 -05:00
|
|
|
"tdigest": "^0.1.2",
|
2024-10-31 10:43:20 -05:00
|
|
|
"ua-parser-js": "2.0.0-rc.1",
|
2022-07-12 01:17:50 -05:00
|
|
|
"xregexp": "^5.1.1"
|
2023-11-27 06:28:28 -05:00
|
|
|
}
|
2015-06-18 12:35:50 -05:00
|
|
|
}
|