-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.17 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
{
"name": "egor.philippov.ca",
"version": "1.0.0",
"sideEffects": false,
"license": "UNLICENSED",
"scripts": {
"build": "next build",
"compile": "tsc --noEmit",
"deduplicate": "yarn-deduplicate",
"deploy": "npx next-deploy",
"dev": "next --turbopack",
"lint": "eslint .",
"lint:style": "stylelint **/*.{ts,tsx,css}",
"prepare": "husky",
"start": "next start",
"pretty": "prettier --write \"**/*.{js,jsx,ts,tsx,md,yml,css,json}\""
},
"dependencies": {
"@fontsource/roboto": "^5.1.1",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"framer-motion": "^12.3.1",
"next": "15.1.6",
"next-seo": "^6.6.0",
"polished": "^4.3.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-is": "19.0.0",
"react-spring": "^9.7.5",
"styled-components": "^6.1.15",
"styled-reset": "^4.5.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "15.1.6",
"@types/node": "^22.13.1",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^8.57.0",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-styled-components-a11y": "^2.2.0",
"husky": "9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.1",
"postcss-styled-syntax": "^0.7.1",
"prettier": "^3.4.2",
"stylelint": "^16.14.1",
"stylelint-config-standard": "^37.0.0",
"typescript": "^5.7.3",
"yarn-deduplicate": "^6.0.2"
},
"lint-staged": {
"*.{ts,tsx,css}": [
"stylelint"
],
"*.{js,jsx,ts,tsx,md,css}": [
"prettier --write"
]
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
}