2019-03-13 22:33:52 +01:00
|
|
|
{
|
2023-10-24 17:51:56 +02:00
|
|
|
"name": "procyon",
|
2023-11-10 13:43:43 +00:00
|
|
|
"version": "1.1.6",
|
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",
|
|
|
|
"eslint": "eslint -c .eslintrc packages/**/*.{ts,tsx}",
|
|
|
|
"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": {
|
|
|
|
"@reduxjs/toolkit": "1.8.3",
|
|
|
|
"clipboard": "2.0.10",
|
|
|
|
"clsx": "^1.2.1",
|
|
|
|
"date-fns": "2.29.2",
|
|
|
|
"postcss": "^8.4.21",
|
|
|
|
"ramda": "0.28.0",
|
|
|
|
"react": "17.0.2",
|
|
|
|
"react-dom": "17.0.2",
|
|
|
|
"react-redux": "8.0.2",
|
|
|
|
"redux-thunk": "2.4.1",
|
|
|
|
"scroll-into-view-if-needed": "^3.0.10",
|
2023-06-14 18:14:13 +02:00
|
|
|
"wouter": "2.11.0",
|
2023-05-13 17:23:29 +02:00
|
|
|
"yup": "0.32.11"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-08-06 10:48:32 +02:00
|
|
|
"@storybook/blocks": "7.2.1",
|
|
|
|
"@storybook/addon-actions": "7.2.1",
|
|
|
|
"@storybook/addon-essentials": "^7.2.1",
|
|
|
|
"@storybook/addon-links": "7.2.1",
|
|
|
|
"@storybook/addon-styling": "1.3.5",
|
|
|
|
"@storybook/addon-viewport": "7.2.1",
|
|
|
|
"@storybook/react": "^7.2.1",
|
|
|
|
"@storybook/react-webpack5": "^7.2.1",
|
2023-05-13 17:23:29 +02:00
|
|
|
"@types/jest": "27.4.1",
|
|
|
|
"@types/mdx": "2.0.4",
|
|
|
|
"@types/node": "17.0.26",
|
|
|
|
"@types/ramda": "0.28.11",
|
|
|
|
"@types/react": "18.0.6",
|
|
|
|
"@types/react-dom": "18.0.2",
|
|
|
|
"@types/react-redux": "7.1.24",
|
|
|
|
"@types/yup": "0.29.13",
|
|
|
|
"@typescript-eslint/eslint-plugin": "5.20.0",
|
|
|
|
"@typescript-eslint/parser": "5.59.0",
|
|
|
|
"autoprefixer": "10.4.5",
|
|
|
|
"cross-env": "7.0.3",
|
|
|
|
"css-loader": "^6.7.3",
|
|
|
|
"eslint": "8.14.0",
|
|
|
|
"eslint-config-prettier": "8.5.0",
|
|
|
|
"eslint-plugin-import": "2.26.0",
|
|
|
|
"eslint-plugin-mdx": "^1.17.1",
|
|
|
|
"eslint-plugin-react": "7.29.4",
|
|
|
|
"eslint-plugin-react-hooks": "4.4.0",
|
|
|
|
"eslint-plugin-simple-import-sort": "7.0.0",
|
|
|
|
"eslint-plugin-typescript": "0.14.0",
|
|
|
|
"eslint-plugin-typescript-sort-keys": "2.3.0",
|
2023-11-07 22:02:14 +01:00
|
|
|
"esprima": "^4.0.1",
|
2023-05-13 17:23:29 +02:00
|
|
|
"http-server": "14.1.0",
|
|
|
|
"jest": "27.5.1",
|
|
|
|
"nightwatch": "2.1.3",
|
|
|
|
"postcss-cli": "9.1.0",
|
|
|
|
"prettier": "2.6.2",
|
|
|
|
"raw-loader": "4.0.2",
|
2023-08-06 10:48:32 +02:00
|
|
|
"storybook": "^7.2.1",
|
2023-05-13 17:23:29 +02:00
|
|
|
"tailwindcss": "3.0.24",
|
|
|
|
"ts-jest": "27.1.4",
|
|
|
|
"ts-loader": "9.4.2",
|
|
|
|
"ts-node": "10.7.0",
|
|
|
|
"tsconfig-paths": "3.14.1",
|
|
|
|
"typescript": "4.9.5"
|
|
|
|
}
|
2023-09-29 18:53:35 +00:00
|
|
|
}
|