-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
159 lines (159 loc) · 6.65 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "audioverse-next",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "concurrently \"npx update-browserslist-db@latest\" \"npm:graphql:codegen\"",
"dev": "concurrently \"npm:graphql:codegen:watch\" \"next dev\"",
"build": "NODE_ICU_DATA=node_modules/full-icu next build",
"postbuild": "next-sitemap",
"build:dev": "ENV_OVERRIDE=development NODE_ICU_DATA=node_modules/full-icu next build --debug",
"build:webpack-only": "ENV_OVERRIDE=development NODE_ICU_DATA=node_modules/full-icu ./next-build-webpack-only.js",
"audit": "audit-ci --config audit-ci.json",
"checkTs": "tsc --noEmit",
"format:fix": "prettier --write --loglevel warn .",
"format:check": "prettier --check --loglevel warn .",
"lint": "eslint --max-warnings 0 .",
"lint:list": "DEBUG=eslint:cli-engine npm run lint",
"lint:fix": "eslint --max-warnings 0 --fix .",
"start": "NODE_ICU_DATA=node_modules/full-icu next start",
"test": "TZ=UTC jest --maxWorkers=50%",
"test:watch": "TZ=UTC jest --watch --maxWorkers=25%",
"test:strict": "TZ=UTC jest --config=jest.config.strict.ts --runInBand",
"intl": "tsx ./scripts/lang-extract.ts && formatjs compile-folder --ast public/lang public/compiled-lang --format lang-formatter.js",
"precommit": "concurrently --max-processes=50% \"npm:format:fix\" \"npm:lint:fix\" \"npm:checkTs\" \"npm:intl\"",
"graphql:codegen": "tsc -p ./graphql-codegen/tsconfig.json && graphql-codegen --config .graphqlrc.yml",
"graphql:codegen:watch": "npm run graphql:codegen -- --watch",
"graphql:purge": "find . -type d -name __generated__ -exec rm -r '{}' \\; -prune",
"lighthouse": "npx lhci autorun",
"analyze": "ANALYZE=true npm run build:webpack-only",
"analyze:server": "BUNDLE_ANALYZE=server npm run build:webpack-only",
"analyze:browser": "BUNDLE_ANALYZE=browser npm run build:webpack-only",
"svgo": "svgo -f ./public/img/icons-raw -o ./public/img/icons",
"pa11y": "pa11y-ci --sitemap http://localhost:3000/sitemap-0.xml --sitemap-find https://www.audioverse.org --sitemap-replace http://localhost:3000 --sitemap-exclude 'https?:\\/\\/[\\w\\.-]+\\/(?!en)\\w\\w\\/'",
"prepare": "husky"
},
"dependencies": {
"@emotion/styled": "^11.13.0",
"@greatsumini/react-facebook-login": "^3.3.3",
"@leecheuk/react-google-login": "^5.4.1",
"@mui/material": "^6.1.1",
"@segment/analytics-next": "^1.73.0",
"@silvermine/videojs-airplay": "^1.3.0",
"@silvermine/videojs-chromecast": "^1.5.0",
"@tanstack/react-query": "^5.56.2",
"@tanstack/react-query-devtools": "^5.56.2",
"clsx": "^2.1.1",
"cookie": "^0.7.0",
"cross-spawn": "^7.0.6",
"dayjs": "^1.11.13",
"feed": "git+https://[email protected]/mattleff/feed.git#custome-elements-build",
"full-icu": "^1.5.0",
"he": "^1.2.0",
"inter-ui": "^4.0.2",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"masonic": "^4.0.1",
"next": "^14.2.13",
"next-pwa": "^5.6.0",
"node-forge": "^1.3.1",
"normalize.css": "^8.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intl": "^6.6.8",
"rollup": "^2.79.2",
"sass": "^1.79.3",
"sharp": "^0.33.5",
"striptags": "^3.2.0",
"swiper": "^11.1.14",
"ts-node": "^10.9.2",
"use-debounce": "^10.0.3",
"video.js": "^8.17.4"
},
"devDependencies": {
"@calm/eslint-plugin-react-intl": "^1.4.1",
"@formatjs/cli": "^6.2.12",
"@formatjs/cli-lib": "^6.4.2",
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/plugin-helpers": "^5.0.4",
"@graphql-codegen/schema-ast": "^4.1.0",
"@graphql-codegen/typescript": "^4.0.9",
"@graphql-codegen/typescript-operations": "^4.2.3",
"@graphql-codegen/typescript-react-query": "^6.1.0",
"@graphql-codegen/visitor-plugin-common": "^5.3.1",
"@jest/types": "^29.6.3",
"@lhci/cli": "^0.14.0",
"@mizdra/eslint-plugin-layout-shift": "^1.0.1",
"@next/bundle-analyzer": "^14.2.13",
"@next/eslint-plugin-next": "^14.2.13",
"@svgr/webpack": "^8.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/cookie": "^0.6.0",
"@types/he": "^1.2.3",
"@types/jest-when": "^3.5.5",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.7",
"@types/node-forge": "^1.3.11",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"@types/react-facebook-login": "^4.1.11",
"@types/react-is": "^18.3.0",
"@types/video.js": "^7.3.58",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"audit-ci": "^7.1.0",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.13",
"eslint-plugin-formatjs": "^4.13.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-testing-library": "^6.3.0",
"graphql": "^16.9.0",
"graphql-codegen-typescript-mock-data": "^4.1.0",
"graphql-tag": "^2.12.6",
"husky": "^9.1.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-date-mock": "^1.0.10",
"jest-environment-jsdom": "^29.7.0",
"jest-when": "^3.6.0",
"next-sitemap": "^4.2.3",
"pa11y-ci": "^3.1.0",
"prettier": "^3.3.3",
"svgo": "^3.3.2",
"ts-jest": "^29.2.5",
"tsconfig-paths-jest-mapper": "^1.4.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"tsx": "^4.19.1",
"type-fest": "^4.26.1",
"typescript": "^5.6.2"
},
"overrides": {
"next-pwa": {
"rollup": "$rollup"
}
},
"nextBundleAnalysis": {
"budget": 230400,
"budgetPercentIncreaseRed": 5,
"showDetails": true
},
"peerDependencies": {
"webpack": "^5.94.0"
},
"engines": {
"node": "20.17.0"
}
}