portfolio/package.json

42 lines
959 B
JSON
Raw Normal View History

2022-06-28 19:50:51 +02:00
{
2022-07-05 22:06:40 +02:00
"name": "portfolio",
2022-07-06 17:00:44 +00:00
"version": "0.1.3",
2022-07-05 22:06:40 +02:00
"private": true,
"scripts": {
"ci:lint": "eslint .",
"ci:build": "npm run build",
"ci:test": "echo 1",
"ci:test-e2e": "echo 1",
"ci:increase-version": "npm version --git-tag-version=false",
2022-07-05 22:06:40 +02:00
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@reduxjs/toolkit": "1.8.0",
"@treejs/components": "0.17.0",
"@treejs/constants": "0.17.0",
"@treejs/styles": "0.17.0",
"next": "12.2.0",
"next-seo": "^5.4.0",
2022-07-05 22:06:40 +02:00
"ramda": "^0.27.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "8.0.2"
},
"devDependencies": {
"@types/node": "18.0.0",
"@types/ramda": "^0.28.14",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"autoprefixer": "10.4.4",
"classnames": "2.3.1",
"eslint": "8.18.0",
"eslint-config-next": "12.2.0",
"postcss": "8.4.14",
"tailwindcss": "^3.1.4",
"typescript": "4.7.4"
}
2022-06-28 19:50:51 +02:00
}