2019-03-13 22:33:52 +01:00
|
|
|
{
|
2023-10-24 17:51:56 +02:00
|
|
|
"name": "procyon",
|
2023-12-28 17:24:26 +00:00
|
|
|
"version": "1.2.10",
|
2023-05-13 17:23:29 +02:00
|
|
|
"description": "",
|
|
|
|
"author": "romanjaros <jarosr93@gmail.com>",
|
|
|
|
"license": "ISC",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"build": "storybook build",
|
|
|
|
"ci:build": "pnpm build && pnpm -r build",
|
|
|
|
"ci:lint": "cross-env CI=true pnpm lint",
|
|
|
|
"ci:test-e2e": "nightwatch --env ci",
|
|
|
|
"ci:test": "cross-env CI=true pnpm test",
|
|
|
|
"deadcode": "npx -y ts-prune",
|
|
|
|
"dev": "storybook dev -p 6006 -c .storybook",
|
2023-11-17 13:38:05 +00:00
|
|
|
"eslint": "eslint -c .eslintrc **/*.{ts,tsx,mdx}",
|
2023-05-13 17:23:29 +02:00
|
|
|
"lint": "pnpm eslint && pnpm prettier",
|
2023-05-31 22:27:39 +02:00
|
|
|
"module:build": "pnpm -r build",
|
|
|
|
"module:clean": "pnpm -r clean",
|
2023-05-13 17:23:29 +02:00
|
|
|
"prettier:fix": "prettier --check --write packages/**/*.ts",
|
|
|
|
"prettier": "prettier --check packages/**/*.ts",
|
|
|
|
"release": "npm version --no-git-tag-version",
|
|
|
|
"serve": "http-server storybook-static",
|
|
|
|
"test-e2e": "nightwatch --env localhost",
|
|
|
|
"test:update": "pnpm test -- -u",
|
|
|
|
"test": "jest --passWithNoTests"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-11-14 10:21:36 +01:00
|
|
|
"@reduxjs/toolkit": "1.9.7",
|
2023-11-14 21:10:54 +01:00
|
|
|
"clsx": "2.0.0",
|
2023-11-16 17:32:40 +00:00
|
|
|
"date-fns": "2.30.0",
|
2023-05-13 17:23:29 +02:00
|
|
|
"postcss": "^8.4.21",
|
2023-11-17 17:32:36 +00:00
|
|
|
"ramda": "0.29.1",
|
2023-11-17 19:33:05 +00:00
|
|
|
"react": "18.2.0",
|
|
|
|
"react-dom": "18.2.0",
|
2023-11-17 06:33:20 +00:00
|
|
|
"react-redux": "8.1.3",
|
2023-11-16 12:28:52 +00:00
|
|
|
"redux-thunk": "2.4.2",
|
2023-05-13 17:23:29 +02:00
|
|
|
"scroll-into-view-if-needed": "^3.0.10",
|
2023-11-16 13:50:16 +00:00
|
|
|
"wouter": "2.12.1",
|
2023-12-16 09:35:57 +00:00
|
|
|
"yup": "1.3.3"
|
2023-05-13 17:23:29 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-01-01 21:32:54 +00:00
|
|
|
"@storybook/addon-actions": "7.6.7",
|
|
|
|
"@storybook/addon-essentials": "7.6.7",
|
|
|
|
"@storybook/addon-links": "7.6.7",
|
|
|
|
"@storybook/addon-viewport": "7.6.7",
|
|
|
|
"@storybook/blocks": "7.6.7",
|
|
|
|
"@storybook/react": "7.6.7",
|
|
|
|
"@storybook/react-webpack5": "7.6.7",
|
2023-12-08 05:32:38 +00:00
|
|
|
"@types/jest": "29.5.11",
|
2023-11-16 11:40:14 +00:00
|
|
|
"@types/mdx": "2.0.10",
|
2023-11-17 14:01:37 +00:00
|
|
|
"@types/node": "18.18.2",
|
2023-11-17 17:32:36 +00:00
|
|
|
"@types/ramda": "0.29.9",
|
2023-12-20 21:37:23 +00:00
|
|
|
"@types/react": "18.2.45",
|
|
|
|
"@types/react-dom": "18.2.18",
|
2023-12-12 21:32:36 +00:00
|
|
|
"@types/react-redux": "7.1.33",
|
2023-11-16 10:09:56 +00:00
|
|
|
"@types/yup": "0.29.14",
|
2023-12-18 17:33:07 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "6.15.0",
|
|
|
|
"@typescript-eslint/parser": "6.15.0",
|
2023-11-16 11:31:59 +00:00
|
|
|
"autoprefixer": "10.4.16",
|
2023-05-13 17:23:29 +02:00
|
|
|
"cross-env": "7.0.3",
|
2023-12-20 21:20:31 +00:00
|
|
|
"eslint": "8.56.0",
|
2023-12-08 05:33:26 +00:00
|
|
|
"eslint-config-prettier": "9.1.0",
|
2023-12-16 09:35:46 +00:00
|
|
|
"eslint-plugin-import": "2.29.1",
|
2024-01-01 17:32:51 +00:00
|
|
|
"eslint-plugin-mdx": "3.1.2",
|
2023-11-17 07:36:14 +00:00
|
|
|
"eslint-plugin-react": "7.33.2",
|
2023-11-17 09:32:56 +00:00
|
|
|
"eslint-plugin-react-hooks": "4.6.0",
|
2023-11-17 13:53:54 +00:00
|
|
|
"eslint-plugin-simple-import-sort": "10.0.0",
|
2023-11-14 21:10:54 +01:00
|
|
|
"eslint-plugin-typescript-sort-keys": "3.1.0",
|
2023-11-16 18:40:06 +01:00
|
|
|
"esprima": "4.0.1",
|
2023-11-16 12:28:46 +00:00
|
|
|
"http-server": "14.1.1",
|
2023-11-17 07:37:30 +00:00
|
|
|
"jest": "29.7.0",
|
2023-12-14 13:32:37 +00:00
|
|
|
"nightwatch": "3.3.5",
|
2023-12-16 09:36:10 +00:00
|
|
|
"postcss-cli": "11.0.0",
|
2023-11-17 11:12:47 +01:00
|
|
|
"postcss-loader": "7.3.3",
|
2023-12-10 09:32:37 +00:00
|
|
|
"prettier": "3.1.1",
|
2023-05-13 17:23:29 +02:00
|
|
|
"raw-loader": "4.0.2",
|
2024-01-01 21:32:54 +00:00
|
|
|
"storybook": "7.6.7",
|
2023-12-19 21:33:09 +00:00
|
|
|
"tailwindcss": "3.4.0",
|
2023-11-17 07:37:30 +00:00
|
|
|
"ts-jest": "29.1.1",
|
2023-11-17 07:36:29 +00:00
|
|
|
"ts-loader": "9.5.1",
|
2023-12-08 13:32:31 +00:00
|
|
|
"ts-node": "10.9.2",
|
2023-11-16 19:34:51 +00:00
|
|
|
"tsconfig-paths": "4.2.0",
|
2023-12-08 09:32:42 +00:00
|
|
|
"typescript": "5.3.3"
|
2023-05-13 17:23:29 +02:00
|
|
|
}
|
2023-11-19 22:33:40 +00:00
|
|
|
}
|