-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.74 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
{
"name": "rest-node-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write \"src/pages/**/*.{ts,tsx,json,css,scss}\" \"src/client/styles/**/*.{css,scss}\"",
"lint": "eslint . --ext js,jsx,ts,tsx ",
"lint:fix": "eslint . --ext js,jsx,ts,tsx --fix",
"lint:quiet": "eslint . --ext js,jsx,ts,tsx --quiet",
"precommit": "npm run lint:fix && npm run format",
"prepush": "npm run lint",
"prepare": "husky install",
"test": "react-scripts test",
"generate": "plop"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.2",
"axios": "^0.27.2",
"axios-mock-adapter": "^1.20.0",
"bootstrap": "^5.1.3",
"i18next": "^21.8.0",
"jest-fetch-mock": "^3.0.3",
"mongodb": "^4.7.0",
"next": "12.1.6",
"next-auth": "^4.8.0",
"next-connect": "^0.12.2",
"react": "18.2.0",
"react-bootstrap": "^2.4.0",
"react-dom": "18.2.0",
"react-i18next": "^11.16.9",
"react-redux": "^8.0.2",
"react-router-dom": "^6.2.2",
"react-scripts": "^5.0.1",
"react-toastify": "^8.2.0",
"redux-mock-store": "^1.5.4",
"typeorm": "^0.3.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^28.1.3",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/redux-mock-store": "^1.0.3",
"eslint": "8.18.0",
"eslint-config-next": "12.1.6",
"husky": "^8.0.1",
"plop": "^3.1.1",
"prettier": "^2.7.1",
"sass": "^1.53.0",
"typescript": "4.7.4"
},
"overrides": {
"mongodb": "^4.7.0"
}
}