-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
103 lines (103 loc) · 3.59 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
103
{
"name": "nextjs-template",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development next dev",
"build": "yarn lingui:build && next build",
"start": "cross-env NODE_ENV=production next start",
"lint": "eslint .",
"lint:staged": "lint-staged",
"prepare": "husky install",
"test": "yarn lingui:build && cross-env NODE_ENV=test jest --coverage",
"test:watch": "jest --env=jsdom --watch",
"test:coverage": "jest --env=jsdom --coverage",
"prettify": "prettier --write ./**/*.ts",
"lint:fix": "yarn eslint . --fix",
"analyze": "cross-env ANALYZE=true yarn build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"lingui:extract": "lingui extract --clean",
"lingui:compile": "lingui compile",
"lingui:build": "yarn lingui:extract && yarn lingui:compile"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@lingui/macro": "^4.11.3",
"@lingui/react": "^4.11.3",
"@mui/material": "^6.0.0",
"@mui/material-nextjs": "^6.0.0",
"@next/bundle-analyzer": "^14.2.6",
"@reduxjs/toolkit": "^2.2.7",
"babel-plugin-import": "^1.13.3",
"cross-env": "^7.0.3",
"history": "^5.3.0",
"isomorphic-fetch": "^3.0.0",
"lodash-es": "^4.17.21",
"next": "14.2.6",
"next-compose-plugins": "^2.2.1",
"next-redux-wrapper": "^8.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"util": "^0.12.4"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@ducanh2912/next-pwa": "^10.2.8",
"@emotion/jest": "^11.13.0",
"@emotion/server": "^11.11.0",
"@eslint/eslintrc": "^3.1.0",
"eslint-config-prettier": "^9.1.0",
"@eslint/js": "^9.9.1",
"@lingui/cli": "^4.11.3",
"@lingui/loader": "^4.11.3",
"@lingui/swc-plugin": "^4.0.8",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",
"@types/isomorphic-fetch": "^0.0.39",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "22.5.0",
"@types/prop-types": "^15.7.12",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@welldone-software/why-did-you-render": "^8.0.3",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-react-remove-properties": "^0.3.0",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-typescript-to-proptypes": "^2.0.0",
"eslint": "^9.9.1",
"eslint-config-next": "^14.2.7",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^2.0.1",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-sonar": "^0.2.16",
"jest-styled-components": "^7.2.0",
"lint-staged": "^15.2.9",
"next-router-mock": "^0.9.13",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
}
}