-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "with-typescript-eslint-jest",
"author": "@agctyz",
"license": "MIT",
"version": "1.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint src --fix",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test"
},
"dependencies": {
"@nextui-org/react": "^1.0.0-beta.10",
"@reduxjs/toolkit": "^1.8.5",
"cors": "^2.8.5",
"mongoose": "^6.6.0",
"mongoose-autopopulate": "^0.16.1",
"next": "^12.1.0",
"next-connect": "^0.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.35.0",
"react-icons": "^4.4.0",
"react-redux": "^8.0.2",
"react-use": "^17.4.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.7.17",
"@types/react": "^18.0.19",
"@types/validator": "^13.7.6",
"eslint": "^8.9.0",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"http-method-enum": "^1.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
}
}