-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "next-rest-countries",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --max-warnings=0",
"test": "jest",
"test:watch": "npm run test -- --watch",
"coverage": "npm run test -- --coverage"
},
"lint-staged": {
"src/**/*": [
"npm run lint --fix",
"npm run test -- --findRelatedTests --bail --passWithNoTests"
]
},
"dependencies": {
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fontsource/nunito-sans": "^4.5.8",
"fast-sort": "^3.2.0",
"framer-motion": "^6.3.6",
"next": "^12.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.4.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.17.12",
"@faker-js/faker": "^7.3.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@types/jest": "^28.1.0",
"@types/node": "17.0.38",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "8.16.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.0",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2",
"typescript": "4.7.2"
}
}