-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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
{
"name": "cv-brendonco",
"version": "1.0.0",
"scripts": {
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"next": "15.0.3",
"prop-types": "^15.7.2",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-globe.gl": "^2.17.1",
"react-is": "19.0.0-rc-66855b96-20241106",
"react-simple-maps": "^3.0.0",
"styled-components": "^6.0.0-rc.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@types/micro": "^10.0.0",
"@types/micro-cors": "^0.1.0",
"@types/node": "^22.10.1",
"@types/react": "npm:[email protected]",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^9.16.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"sass": "^1.82.0",
"sass-loader": "^16.0.4",
"typescript": "^5.0.3"
},
"license": "MIT",
"resolutions": {
"@types/react": "npm:[email protected]"
}
}