-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.51 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.51 KB
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
{
"name": "qucore-dynamic-client",
"description": "Futuristic landing & authentication frontend for QuCore Dynamic - a high-tech ecosystem platform with SSO, RBAC and scalable architecture.",
"version": "1.0.0",
"author": "Artem_Zhyto <https://github.com/ArtemZhyto>",
"contributors": [
"Artem_Zhyto <https://github.com/ArtemZhyto>"
],
"license": "PolyForm-Noncommercial-1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack -p 3000",
"build": "next build",
"start": "next start --port 3000",
"test": "jest --verbose --passWithNoTests",
"go": "next build && next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"dependencies": {
"@reduxjs/toolkit": "^2.6.1",
"@tailwindcss/postcss": "^4.1.2",
"axios": "^1.13.6",
"critters": "^0.0.25",
"framer-motion": "^12.38.0",
"next": "^15.2.4",
"next-intl": "^4.8.3",
"postcss": "^8.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"sass": "^1.86.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@jest/globals": "^30.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.7.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.27",
"eslint": "^9.9.0",
"eslint-plugin-react": "^7.35.0",
"globals": "^17.4.0",
"jest": "^30.2.0",
"prettier": "^3.3.3",
"ts-jest": "^29.4.9",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
}
}