-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.21 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
{
"name": "nextjs-template",
"version": "0.1.0",
"private": true,
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev -p 4000",
"translations:extract": "lingui extract --clean",
"analyze-build": "cross-env-shell ANALYZE=true next build && npm run build:post",
"build": "next build",
"build-standalone": "cross-env-shell STANDALONE=true next build && npm run build:post",
"build-export": "cross-env-shell EXPORT=true next build && next-export-optimize-images && npm run build:post",
"build:post": "next-sitemap",
"start": "next start -p 4000",
"start-standalone": "cross-env cpy './public/**' './.next/standalone/public' && cross-env cpy './.next/static/**' './.next/standalone/.next/static' && node .next/standalone/server.js",
"start-export": "cd out && npx serve",
"lint": "next lint",
"deploy-docker": "env-cmd npm run deploy-docker-script",
"deploy-docker-script": "cross-env-shell docker image build -t $DOCKER_IMAGE . && cross-env-shell docker push $DOCKER_IMAGE",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@formkit/auto-animate": "^0.8.0",
"@heroicons/react": "^2.1.1",
"@hookform/resolvers": "^3.3.4",
"@lingui/core": "^4.7.1",
"@lingui/react": "^4.7.1",
"@next/third-parties": "^14.1.0",
"@nextui-org/react": "^2.2.9",
"@uidotdev/usehooks": "^2.4.1",
"clsx": "^2.1.0",
"framer-motion": "^11.0.6",
"isbot": "^5.1.0",
"lodash": "^4.17.21",
"next": "^14.1.0",
"next-themes": "^0.2.1",
"node-cache": "^5.1.2",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-fast-marquee": "^1.6.4",
"react-hook-form": "^7.50.1",
"react-hydration-provider": "^2.1.0",
"react-intersection-observer": "^9.8.1",
"react-responsive": "^9.0.2",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4",
"swr": "^2.2.5",
"tailwind-merge": "^2.2.1",
"unique-names-generator": "^4.7.1",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@lingui/cli": "^4.7.1",
"@lingui/loader": "^4.7.1",
"@lingui/macro": "^4.7.1",
"@lingui/swc-plugin": "^4.0.6",
"@next/bundle-analyzer": "^14.1.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/lodash": "^4.14.202",
"@types/node": "20.11.20",
"@types/react": "18.2.58",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "18.2.19",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.10",
"@welldone-software/why-did-you-render": "^8.0.1",
"autoprefixer": "^10.4.17",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.0",
"eslint-plugin-no-inline-styles": "^1.0.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next-compose-plugins": "^2.2.1",
"next-export-optimize-images": "^3.2.0",
"next-router-mock": "^0.9.12",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.35",
"postcss-import": "^16.0.1",
"prettier": "^3.2.5",
"sharp": "^0.33.2",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}