-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.66 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
{
"name": "ge-code-challenge",
"version": "0.0.1",
"private": true,
"license": "UNLICENSED",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext .ts,.tsx,.js,.json . && stylelint src/**/*.css && tsc --noemit",
"lint:fix": "eslint --fix --ext .ts,.tsx,.js,.json . && stylelint src/**/*.css --fix",
"prepare": "husky install",
"i18next:extract": "i18next",
"analyze": "cross-env ANALYZE=true next build"
},
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@apollo/client": "^3.7.10",
"@next/bundle-analyzer": "^13.2.4",
"antd": "^5.3.2",
"clsx": "^1.2.1",
"graphql": "^16.6.0",
"next": "^13.2.4",
"next-i18next": "^13.2.2",
"rc-resize-observer": "^1.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.2.0",
"react-router-dom": "^6.9.0",
"react-window": "^1.8.8",
"sharp": "^0.32.0"
},
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@next/eslint-plugin-next": "^13.2.4",
"@types/node": "^18.15.10",
"@types/react": "^18.0.29",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"cssnano": "^5.1.15",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-prefer-function-component": "^3.1.0",
"husky": "^8.0.3",
"i18next-parser": "^7.7.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"postcss": "^8.4.21",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^8.1.0",
"prettier": "2.8.7",
"prettier-plugin-jsdoc": "^0.4.2",
"prettier-plugin-multiline-arrays": "^1.1.3",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-packagejson": "^2.4.3",
"prettier-plugin-sort-json": "^1.0.0",
"stylelint": "^15.3.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recess-order": "^4.0.0",
"stylelint-config-standard": "^31.0.0",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^3.0.0",
"stylelint-selector-bem-pattern": "^2.1.1",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
}
}