-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.03 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.03 KB
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
{
"name": "blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"lint": "eslint src --max-warnings=0",
"lint:fix": "eslint src --fix",
"prepare": "husky install",
"typecheck": "tsc --noEmit --incremental false --watch",
"coverage": "npm run test -- --watchAll=false --coverage"
},
"dependencies": {
"dotenv": "^16.0.3",
"graphql-request": "^5.1.0",
"jsdom": "^21.1.0",
"mongodb": "^5.0.1",
"next": "13.1.0",
"next-auth": "^4.19.2",
"react": "18.2.0",
"react-datocms": "^4.0.8",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-toastify": "^9.1.1",
"sharp": "^0.32.0",
"styled-components": "^5.3.6",
"swr": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.2.5",
"@types/node": "18.11.17",
"@types/node-fetch": "^2.6.2",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.0",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-mock": "^29.3.1",
"jest-styled-components": "^7.1.1",
"next-router-mock": "^0.9.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"typescript": "4.9.4"
}
}