-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.77 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "honey-votes",
"version": "0.1.0",
"private": true,
"workspaces": [
"widgets"
],
"scripts": {
"dev": "next dev -p 3001",
"build": "concurrently \"next build\" \"yarn build:widgets\"",
"postbuild": "rm -rf public/widgets && mv widgets/out public/widgets",
"start": "next start",
"export": "next export",
"lint": "next lint",
"build:widgets": "cd ./widgets && yarn build && yarn export",
"generate:types": "npx openapi-typescript http://localhost:3000/api-json --output src/features/api/apiTypes.generated.ts",
"generate:kinopoisk-types": "npx openapi-typescript https://kinopoiskapiunofficial.tech/documentation/api/openapi.json --output src/features/kinopoisk-api/kinopoiskApiTypes.generated.ts",
"generate:schema": "node ./scripts/generateApiSchema.js http://localhost:3000/api-json src/features/api/apiSchema.json",
"gen": "yarn generate:types && yarn generate:schema && yarn generate:kinopoisk-types"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.8.6",
"@mui/styles": "^5.8.6",
"@reduxjs/toolkit": "^1.8.3",
"@supabase/supabase-js": "^1.35.4",
"axios": "^0.27.2",
"country-flag-icons": "^1.5.5",
"d3-array": "^3.1.6",
"d3-ease": "^3.0.1",
"date-fns": "^2.28.0",
"i18next": "^21.8.11",
"i18next-browser-languagedetector": "^6.1.4",
"igdb-api-types": "^0.1.0",
"immer": "^9.0.15",
"js-cookie": "^3.0.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"next": "^12.2.0",
"next-seo": "^5.4.0",
"notistack": "^2.0.5",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.33.1",
"react-i18next": "^11.17.4",
"react-redux": "^8.0.2",
"react-spinning-canvas-wheel": "^0.1.4",
"react-use": "^17.4.0",
"twitch-js": "^2.0.0-beta.43",
"use-sound": "^4.0.1"
},
"devDependencies": {
"@types/d3-array": "^3.0.3",
"@types/d3-ease": "^3.0.0",
"@types/gtag.js": "^0.0.10",
"@types/js-cookie": "^3.0.1",
"@types/lodash": "^4.14.181",
"@types/node-fetch": "^3.0.3",
"@types/ramda": "^0.28.14",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"concurrently": "^7.2.2",
"cross-env": "^7.0.3",
"eslint": "8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^12.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"prettier": "^2.7.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}