-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "weather-challenge",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "eslint src --max-warnings=0",
"postinstall": "husky install",
"prepare": "husky install",
"start": "next start",
"test": "jest",
"test:watch": "yarn test --watch"
},
"lint-staged": {
"src/**/*": [
"yarn lint",
"yarn test --findRelatedTests --bail"
]
},
"dependencies": {
"axios": "^0.27.2",
"classnames": "^2.3.1",
"framer-motion": "^7.2.1",
"next": "^12.2.5",
"next-seo": "^5.5.0",
"nextjs-progressbar": "^0.0.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.54.5"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-typescript": "^7.18.6",
"@next/eslint-plugin-next": "^12.2.5",
"@svgr/webpack": "^6.3.1",
"@testing-library/dom": "^8.17.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/classnames": "^2.3.1",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.2.0",
"babel-loader": "^8.2.5",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.1-alpha-9c8161ba8-20211028",
"husky": "^8.0.0",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
}
}