-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.06 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nextjs-mongodb-events-manager-app",
"description": "An event app manager",
"auth": "Lornz-",
"version": "0.1.0",
"private": true,
"keywords": [
"nextjs",
"mongodb",
"mongoose",
"styled-components",
"app"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"test:silent": "jest --silent",
"test:coverage": "jest --coverage",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"dependencies": {
"ajv": "^8.12.0",
"body-parser": "^1.20.2",
"eslint": "8.42.0",
"eslint-config-next": "13.4.4",
"formik": "^2.4.1",
"mongodb": "^5.6.0",
"mongodb-memory-server": "^8.12.2",
"mongoose": "^7.2.2",
"next": "13.4.4",
"next-connect": "^1.0.0",
"polished": "^4.2.2",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "2.4.0",
"react-modal": "^3.16.1",
"styled-components": "^6.0.0-rc.3",
"swr": "^2.1.5",
"yup": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.5",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"babel-jest": "^29.5.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-formatjs": "^4.10.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-environment-node": "^29.5.0",
"lint-staged": "^13.2.2",
"msw": "^1.2.2",
"next-router-mock": "^0.9.6",
"prettier": "^2.8.8",
"supertest": "^6.3.3"
},
"msw": {
"workerDirectory": "public"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix",
"*.{json,md}": "prettier --write"
}
}