-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.85 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
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
{
"name": "frontend",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"dokku-build": "next build && next start",
"lint": "next lint && npm run format:check",
"lint:fix": "npm run format:fix && next lint --fix",
"format:check": "prettier . --check",
"format:fix": "prettier . --write",
"test": "jest",
"test:watch": "jest --watch",
"cypress": "cypress open",
"test:e2e": "pnpm build && start-server-and-test start http://localhost:3000 cypress",
"predeploy": "pnpm run build",
"deploy": "gh-pages -b master -d out --nojekyll -t true",
"prepare": "husky",
"typecheck": "pnpm exec tsc --noEmit"
},
"repository": {
"type": "",
"url": ""
},
"keywords": [
"website",
"frontend",
"interface",
"next.js"
],
"author": "JeanExtreme002 <jeangamerextreme@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JeanExtreme002"
},
"homepage": "",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.4.11",
"@mui/material": "^6.1.6",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/themes": "^3.1.4",
"@testing-library/react-hooks": "^8.0.1",
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"gh-pages": "^6.1.1",
"i18next": "^25.7.4",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-http-backend": "^3.0.2",
"next": "14.2.15",
"next-auth": "^4.24.11",
"radix-ui": "^1.3.4",
"react": "^18",
"react-dom": "^18",
"react-google-button": "^0.8.0",
"react-i18next": "^16.5.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@commitlint/cz-commitlint": "^18.6.1",
"@cypress/webpack-preprocessor": "^6.0.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.10",
"@types/node": "^20",
"@types/react": "^18.3.11",
"@types/react-dom": "^18",
"commitizen": "^4.3.1",
"cypress": "^13.15.0",
"deepmerge": "^4.3.1",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"inquirer": "^8.2.4",
"inquirer-autocomplete-prompt": "^2.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "12.3.2",
"lodash": "^4.17.21",
"postcss": "^8",
"prettier": "^3.3.3",
"start-server-and-test": "^2.0.8",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
}
}