-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 3.43 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "next-drupal-typescript-starter",
"version": "0.2.0",
"description": "Starter frontend template for decoupled Drupal projects based on Next.js, React, TypeScript, Next-Drupal, Chakra UI, i18n, SEO, PWA and other awesome stuff.",
"repository": "https://github.com/theRuslan/next-drupal-typescript-starter",
"author": "theRuslan <iam@theruslan.ru> (https://theruslan.ru)",
"private": true,
"config": {
"port": "2000"
},
"engines": {
"node": "20.x"
},
"packageManager": "pnpm@9.12.2",
"scripts": {
"clean": "rimraf .next",
"dev": "pnpm clean && next dev -p $npm_package_config_port",
"build": "pnpm clean && next build && pnpm gen:sitemap",
"build:analyze": "cross-env ANALYZE=true pnpm build",
"start": "next start -p $npm_package_config_port",
"lint": "next lint && stylelint '**/*.{css,scss}'",
"type-check": "tsc --noEmit",
"gen:sitemap": "next-sitemap",
"gen:theme-typings": "chakra-cli tokens ./theme/theme.ts",
"gen:favicon": "real-favicon generate faviconDescription.json faviconData.json ./public",
"gen:favicon-update": "real-favicon check-for-update --fail-on-update faviconData.json"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@reduxjs/toolkit": "^2.2.6",
"axios": "^1.7.2",
"drupal-jsonapi-params": "^2.3.1",
"framer-motion": "^11.2.12",
"get-video-id": "^4.1.7",
"html-react-parser": "^5.1.10",
"html-to-text": "^9.0.5",
"i18next": "^23.11.5",
"next": "^14.2.4",
"next-drupal": "^1.6.0",
"next-i18next": "^15.3.0",
"next-pwa": "^5.6.0",
"next-seo": "^6.5.0",
"nprogress": "^0.2.0",
"photoswipe": "^5.4.4",
"polished": "^4.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-gtm-module": "^2.0.11",
"react-i18next": "^14.1.2",
"react-intersection-observer": "^9.10.3",
"react-merge-refs": "^2.1.1",
"react-photoswipe-gallery": "^3.0.1",
"react-redux": "^9.1.2",
"react-youtube": "^10.1.0",
"safe-json-stringify": "^1.2.0",
"sharp": "^0.33.4",
"simplebar-react": "^3.2.6",
"use-debounce": "^10.0.1"
},
"devDependencies": {
"@chakra-ui/cli": "^2.4.1",
"@next/bundle-analyzer": "^14.2.4",
"@types/html-to-text": "^9.0.4",
"@types/node": "^20.14.9",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-gtm-module": "^2.0.3",
"@types/safe-json-stringify": "^1.1.5",
"@types/youtube-player": "^5.5.11",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"babel-loader": "^9.1.3",
"cli-real-favicon": "^0.0.9",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.39",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.0",
"typescript": "^5.5.3"
}
}