2019-03-13 22:33:52 +01:00
|
|
|
{
|
2023-10-24 17:51:56 +02:00
|
|
|
"name": "procyon",
|
2023-11-14 22:00:00 +00:00
|
|
|
"version": "1.2.0",
|
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",
|
|
|
|
"ramda": "0.28.0",
|
|
|
|
"react": "17.0.2",
|
|
|
|
"react-dom": "17.0.2",
|
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-05-13 17:23:29 +02:00
|
|
|
"yup": "0.32.11"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-11-17 07:36:54 +00:00
|
|
|
"@storybook/addon-actions": "7.5.3",
|
|
|
|
"@storybook/addon-essentials": "7.5.3",
|
|
|
|
"@storybook/addon-links": "7.5.3",
|
|
|
|
"@storybook/addon-viewport": "7.5.3",
|
2023-11-17 11:12:47 +01:00
|
|
|
"@storybook/blocks": "7.5.3",
|
2023-11-17 07:36:54 +00:00
|
|
|
"@storybook/react": "7.5.3",
|
|
|
|
"@storybook/react-webpack5": "7.5.3",
|
2023-11-17 07:37:30 +00:00
|
|
|
"@types/jest": "29.5.8",
|
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-05-13 17:23:29 +02:00
|
|
|
"@types/ramda": "0.28.11",
|
2023-11-17 09:32:56 +00:00
|
|
|
"@types/react": "18.2.37",
|
|
|
|
"@types/react-dom": "18.2.15",
|
2023-11-16 12:28:41 +00:00
|
|
|
"@types/react-redux": "7.1.30",
|
2023-11-16 10:09:56 +00:00
|
|
|
"@types/yup": "0.29.14",
|
2023-11-14 21:10:54 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "6.11.0",
|
|
|
|
"@typescript-eslint/parser": "6.11.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-11-17 06:32:37 +00:00
|
|
|
"eslint": "8.53.0",
|
2023-11-14 21:10:54 +01:00
|
|
|
"eslint-config-prettier": "9.0.0",
|
2023-11-17 07:36:07 +00:00
|
|
|
"eslint-plugin-import": "2.29.0",
|
2023-11-17 13:38:05 +00:00
|
|
|
"eslint-plugin-mdx": "2.2.0",
|
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-11-16 15:32:52 +00:00
|
|
|
"nightwatch": "2.6.22",
|
2023-11-17 17:33:10 +00:00
|
|
|
"postcss-cli": "10.1.0",
|
2023-11-17 11:12:47 +01:00
|
|
|
"postcss-loader": "7.3.3",
|
2023-11-14 21:10:54 +01:00
|
|
|
"prettier": "3.1.0",
|
2023-05-13 17:23:29 +02:00
|
|
|
"raw-loader": "4.0.2",
|
2023-11-17 07:36:54 +00:00
|
|
|
"storybook": "7.5.3",
|
2023-11-14 21:10:54 +01:00
|
|
|
"tailwindcss": "3.3.5",
|
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-11-17 07:36:38 +00:00
|
|
|
"ts-node": "10.9.1",
|
2023-11-16 19:34:51 +00:00
|
|
|
"tsconfig-paths": "4.2.0",
|
2023-05-13 17:23:29 +02:00
|
|
|
"typescript": "4.9.5"
|
|
|
|
}
|
2023-11-16 18:40:06 +01:00
|
|
|
}
|