-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.2 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
{
"name": "mvp-social",
"version": "1.0.0",
"private": true,
"author": "Eugene Molchanov <eugene.a.molchanov@gmail.com>",
"sideEffects": [
"*.css"
],
"type": "module",
"engines": {
"node": ">=22.8.0",
"npm": ">=10.8.0"
},
"scripts": {
"cache:clear": "rm -rf .next",
"next:dev": "npm run cache:clear && next dev --experimental-https",
"next:build": "next build",
"next:lint": "next lint",
"start": "npm run next:dev",
"build": "npm run next:build",
"serve": "bash ./serve-local-build.sh",
"build:serve": "npm run build && npm run serve",
"build:analyze": "BUNDLE_ANALYZE=true npm run build",
"test": "vitest",
"test:ci": "vitest run",
"test:watch": "vitest watch",
"ts:check": "tsc --project tsconfig.json --pretty --noEmit",
"ts:watch": "tsc --pretty --noEmit --incremental --watch",
"lint-staged": "lint-staged -c .lintstagedrc.cjs",
"prepare": "husky"
},
"config": {},
"dependencies": {
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.0.2",
"@mui/material": "^6.0.2",
"@mui/material-nextjs": "^6.0.2",
"@tanstack/react-query": "^5.51.1",
"client-only": "^0.0.1",
"ky": "^1.4.0",
"next": "^14.2.5",
"next-i18n-router": "^5.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"server-only": "^0.0.1",
"sharp": "^0.33.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.2.8",
"@tanstack/react-query-devtools": "^5.51.1",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/node": "^22.5.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.1.5",
"lint-staged": "^15.2.7",
"prettier": "^3.2.5",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
}
}