-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "countries",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"analyze": "ANALYZE=true next build",
"lint": "next lint",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|ts|tsx)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"validate": "npm run check-format && npm run lint && npm run build",
"prepare": "husky install"
},
"dependencies": {
"next": "^12.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.5",
"styled-icons": "^10.45.0",
"styled-media-query": "^2.1.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.1.5",
"@types/node": "^17.0.21",
"@types/react": "^17.0.41",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "8.11.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.8",
"prettier": "^2.6.2",
"typescript": "^4.6.2"
},
"lint-staged": {
"**/*.(js|ts|tsx)": [
"eslint --fix",
"prettier --write"
]
}
}