-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 3.09 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
{
"name": "cv-maker",
"version": "0.1.0",
"private": true,
"sideEffects": false,
"dependencies": {
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.3",
"@rawwee/react-pdf-html": "^1.2.1",
"@react-pdf/renderer": "^4.0.0",
"@reduxjs/toolkit": "^2.2.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"compressorjs": "^1.2.1",
"disable-scroll": "^0.6.0",
"firebase": "^10.14.0",
"framer-motion": "^11.11.1",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"lucide-react": "^0.447.0",
"luxon": "^3.5.0",
"next": "^14.2.14",
"next-intl": "3.20.0",
"react": "^18.3.1",
"react-custom-scroll": "^7.0.0",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-toastify": "^10.0.5",
"redux-persist": "^6.0.0",
"sass": "^1.79.4",
"tailwind-merge": "^2.5.3",
"tailwindcss-animate": "^1.0.7",
"web-vitals": "^4.2.3"
},
"scripts": {
"predev": "npm run translations:watch &",
"dev": "next dev",
"prebuild": "npm run translations:compile",
"build": "next build",
"start": "next start",
"lint": "next lint",
"start:emulators": "firebase emulators:start --import=./seed-data --export-on-exit",
"test": "react-scripts test",
"eject": "react-scripts eject",
"translations:compile": "node compile-translations.mjs",
"translations:watch": "find modules ui -name '*.json' | entr node compile-translations.mjs"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:3000",
"devDependencies": {
"@next/bundle-analyzer": "^14.2.14",
"@next/eslint-plugin-next": "^14.2.14",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.10",
"@types/luxon": "^3.4.2",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@types/react-custom-scroll": "^5.0.3",
"@types/react-custom-scrollbars": "^4.0.13",
"@types/react-dom": "^18.3.0",
"@types/react-pdf": "^7.0.0",
"@types/webpack": "^5.28.5",
"@types/webpack-env": "^1.18.5",
"autoprefixer": "^10.4.20",
"chalk": "^5.3.0",
"copy-webpack-plugin": "^12.0.2",
"eslint-config-next": "^14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"firebase-tools": "^13.20.2",
"path": "^0.12.7",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.6",
"prettier": "^3.3.3",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-tailwindcss": "^0.6.8",
"style-loader": "^4.0.0",
"svg-inline-loader": "^0.8.2",
"svg-url-loader": "^8.0.0",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2"
}
}